(Steve Dougherty)
2013-07-18: Fix lack of quoting to make string in __repr__. Fix lack of quoting to make string in __repr__.
diff --git a/infocalypse/keys.py b/infocalypse/keys.py --- a/infocalypse/keys.py +++ b/infocalypse/keys.py @@ -21,4 +21,4 @@ class USK: return '%s/%s/%s' % (self.key, self.name, self.edition) def __repr__(self): - return "USK(%s)" % str(self) \ No newline at end of file + return "USK('%s')" % str(self)