diff options
| author | smathieu <simon.math@gmail.com> | 2010-12-08 19:32:40 -0500 |
|---|---|---|
| committer | smathieu <simon.math@gmail.com> | 2010-12-08 19:32:40 -0500 |
| commit | c92e09ea9efdc6b8e3a3dbc03916f6d12a0a4ff1 (patch) | |
| tree | 2ad32dedee36751b6a43523860acd087e51d3e82 /distutils2/run.py | |
| parent | 374d134d077fd8f6f3618bfee7e34b717a8a6f51 (diff) | |
| download | disutils2-c92e09ea9efdc6b8e3a3dbc03916f6d12a0a4ff1.tar.gz | |
Fix bug that caused test test_sub_commands to fail.
Diffstat (limited to 'distutils2/run.py')
| -rw-r--r-- | distutils2/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils2/run.py b/distutils2/run.py index 7e63f14..69ab723 100644 --- a/distutils2/run.py +++ b/distutils2/run.py @@ -128,7 +128,7 @@ def main(): if len(args) == 0: parser.print_help() - commands_main() + return commands_main() # sys.exit(0) if __name__ == '__main__': |
