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/extract-key.py | |
parent | 4762069728c3874b8a240c5c99c87f935051fd5a (diff) |
More lint
svn path=/rpkid/Makefile; revision=2373
Diffstat (limited to 'rpkid/extract-key.py')
-rw-r--r-- | rpkid/extract-key.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rpkid/extract-key.py b/rpkid/extract-key.py index dabca32a..74db1c02 100644 --- a/rpkid/extract-key.py +++ b/rpkid/extract-key.py @@ -53,9 +53,9 @@ user = "rpki" passwd = "fnord" db = "rpki" -opts,argv = getopt.getopt(sys.argv[1:], "s:b:u:p:d:h?", - ["self=", "bsc=", "user=", "password=", "db=", "help"]) -for o,a in opts: +opts, argv = getopt.getopt(sys.argv[1:], "s:b:u:p:d:h?", + ["self=", "bsc=", "user=", "password=", "db=", "help"]) +for o, a in opts: if o in ("-h", "--help", "-?"): usage(0) elif o in ("-s", "--self"): |