diff options
| -rwxr-xr-x | scripts/wic | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/wic b/scripts/wic index fd4a67892b..5bedd90f87 100755 --- a/scripts/wic +++ b/scripts/wic | |||
| @@ -279,13 +279,13 @@ def start_logging(loglevel): | |||
| 279 | logging.basicConfig(filname='wic.log', filemode='w', level=loglevel) | 279 | logging.basicConfig(filname='wic.log', filemode='w', level=loglevel) |
| 280 | 280 | ||
| 281 | 281 | ||
| 282 | def main(): | 282 | def main(argv): |
| 283 | parser = optparse.OptionParser(version="wic version %s" % __version__, | 283 | parser = optparse.OptionParser(version="wic version %s" % __version__, |
| 284 | usage=wic_usage) | 284 | usage=wic_usage) |
| 285 | 285 | ||
| 286 | parser.disable_interspersed_args() | 286 | parser.disable_interspersed_args() |
| 287 | 287 | ||
| 288 | (options, args) = parser.parse_args() | 288 | (options, args) = parser.parse_args(argv) |
| 289 | 289 | ||
| 290 | if len(args): | 290 | if len(args): |
| 291 | if args[0] == "help": | 291 | if args[0] == "help": |
| @@ -298,7 +298,7 @@ def main(): | |||
| 298 | 298 | ||
| 299 | if __name__ == "__main__": | 299 | if __name__ == "__main__": |
| 300 | try: | 300 | try: |
| 301 | ret = main() | 301 | ret = main(sys.argv[1:]) |
| 302 | except Exception: | 302 | except Exception: |
| 303 | ret = 1 | 303 | ret = 1 |
| 304 | import traceback | 304 | import traceback |
