X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/blobdiff_plain/9ca1789eac7b1e6be29918e033b66d6328883575..b2687a0a4b3c5e45cad7c5815a6d3805bfc8d4f1:/pwsafe?ds=sidebyside diff --git a/pwsafe b/pwsafe index 208ccdc..5965906 100755 --- a/pwsafe +++ b/pwsafe @@ -166,15 +166,15 @@ def cmd_dump(av): k = db.nextkey(k) commands = { 'create': [cmd_create, - '[-c CIPHER] [-h HASH] [-m MAC] [PP-TAG]'], - 'find' : [cmd_find, 'LABEL'], - 'store' : [cmd_store, 'LABEL [VALUE]'], - 'list' : [cmd_list, '[GLOB-PATTERN]'], - 'changepp' : [cmd_changepp, ''], - 'copy' : [cmd_copy, 'DEST-FILE [GLOB-PATTERN]'], - 'to-pixie' : [cmd_topixie, '[TAG [PIXIE-TAG]]'], - 'delete' : [cmd_del, 'TAG'], - 'dump' : [cmd_dump, '']} + '[-c CIPHER] [-h HASH] [-m MAC] [PP-TAG]'], + 'find' : [cmd_find, 'LABEL'], + 'store' : [cmd_store, 'LABEL [VALUE]'], + 'list' : [cmd_list, '[GLOB-PATTERN]'], + 'changepp' : [cmd_changepp, ''], + 'copy' : [cmd_copy, 'DEST-FILE [GLOB-PATTERN]'], + 'to-pixie' : [cmd_topixie, '[TAG [PIXIE-TAG]]'], + 'delete' : [cmd_del, 'TAG'], + 'dump' : [cmd_dump, '']} def version(): print '%s 1.0.0' % prog @@ -183,7 +183,7 @@ def usage(fp): def help(): version() print - usage(stdout) + usage(stdout) print ''' Maintains passwords or other short secrets securely. @@ -202,8 +202,8 @@ Commands provided: try: opts, argv = getopt(argv[1:], - 'hvuf:', - ['help', 'version', 'usage', 'file=']) + 'hvuf:', + ['help', 'version', 'usage', 'file=']) except GetoptError: usage(stderr) exit(1)