diff options
author | Rob Austein <sra@hactrn.net> | 2009-04-29 04:07:41 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-04-29 04:07:41 +0000 |
commit | 55769ccf0d1230698646ab5afa331e7617505f4f (patch) | |
tree | 126f9e21c2e4dd8dfbdc6c266f18d5c4d6004fa3 /rpkid/testpoke.py | |
parent | 4762069728c3874b8a240c5c99c87f935051fd5a (diff) |
More lint
svn path=/rpkid/Makefile; revision=2373
Diffstat (limited to 'rpkid/testpoke.py')
-rw-r--r-- | rpkid/testpoke.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/testpoke.py b/rpkid/testpoke.py index e1c583e4..86e7aaef 100644 --- a/rpkid/testpoke.py +++ b/rpkid/testpoke.py @@ -43,8 +43,8 @@ yaml_file = "testpoke.yaml" yaml_cmd = None debug = False -opts,argv = getopt.getopt(sys.argv[1:], "y:r:h?d", ["yaml=", "request=", "help", "debug"]) -for o,a in opts: +opts, argv = getopt.getopt(sys.argv[1:], "y:r:h?d", ["yaml=", "request=", "help", "debug"]) +for o, a in opts: if o in ("-h", "--help", "-?"): usage(0) elif o in ("-y", "--yaml"): |