Commit 3e6d4380 authored by Greg Ward's avatar Greg Ward

Fixed 'run()' so it doesn't call 'bytecompile()' if 'install()' returned None.

parent e564278b
......@@ -56,7 +56,8 @@ class install_lib (Command):
outfiles = self.install()
# (Optionally) compile .py to .pyc
self.bytecompile(outfiles)
if outfiles is not None:
self.bytecompile(outfiles)
# run ()
......
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