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/pubd.py | |
parent | 4762069728c3874b8a240c5c99c87f935051fd5a (diff) |
More lint
svn path=/rpkid/Makefile; revision=2373
Diffstat (limited to 'rpkid/pubd.py')
-rwxr-xr-x | rpkid/pubd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/pubd.py b/rpkid/pubd.py index 5fbfcb9a..1fb2bace 100755 --- a/rpkid/pubd.py +++ b/rpkid/pubd.py @@ -115,8 +115,8 @@ rpki.log.init("pubd") cfg_file = "pubd.conf" profile = False -opts,argv = getopt.getopt(sys.argv[1:], "c:hp:?", ["config=", "help"]) -for o,a in opts: +opts, argv = getopt.getopt(sys.argv[1:], "c:hp:?", ["config=", "help"]) +for o, a in opts: if o in ("-h", "--help", "-?"): print __doc__ sys.exit(0) |