Commit 130293e9 authored by Denis Bilenko's avatar Denis Bilenko

fix TypeError in setup.py

parent e76166f4
......@@ -54,7 +54,7 @@ if sys.platform == 'win32':
def has_changed(destination, *source):
from glob import glob
if not os.path.exists(destination):
sys.stderr.write('Creating \n' % destination)
sys.stderr.write('Creating %s\n' % destination)
return True
dest_mtime = os.stat(destination).st_mtime
source = source + ('setup.py', )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment