aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Dolbec <dolsen@gentoo.org>2015-07-25 13:56:30 -0700
committerBrian Dolbec <dolsen@gentoo.org>2015-08-02 20:59:36 -0700
commit534fac884f2ce1a45cf6a73d0491884e1bfe0d0a (patch)
treef15db107eb954b58d38fdedce193fca02fa9dd4b
parentgkeys/actions.py: Fix a traceback when a filename does not have an extension (diff)
downloadgentoo-keys-534fac884f2ce1a45cf6a73d0491884e1bfe0d0a.tar.gz
gentoo-keys-534fac884f2ce1a45cf6a73d0491884e1bfe0d0a.tar.bz2
gentoo-keys-534fac884f2ce1a45cf6a73d0491884e1bfe0d0a.zip
gkeys/base.py: Add missing action and timestamp attributes
Sort the staus attribute.
-rw-r--r--gkeys/gkeys/base.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gkeys/gkeys/base.py b/gkeys/gkeys/base.py
index b422caf..7fd9908 100644
--- a/gkeys/gkeys/base.py
+++ b/gkeys/gkeys/base.py
@@ -34,7 +34,7 @@ class Args(object):
def __init__(self):
- self.status = False
+ self.ation = None
self.all = False
self.category = None
self.cleankey = False
@@ -50,6 +50,8 @@ class Args(object):
self.keydir = None
self.seedfile = None
self.signature = None
+ self.status = False
+ self.timestamp = None
self.uid = None