Fix isfile() typo in setup.py

This commit is contained in:
Calum Lind 2017-01-09 18:02:28 +00:00
parent 6743b0c813
commit 283ad6137d

View file

@ -126,7 +126,7 @@ class BuildWebUI(cmd.Command):
minify_js_dir(source_dir)
except NameError:
js_file = source_dir + '.js'
if os.path.is_file(js_file):
if os.path.isfile(js_file):
print('Unable to minify but found existing minified: {}'.format(js_file))
else:
# Unable to minify and no existing minified file found so exiting.