Commit 8d1824c3 authored by Barry Warsaw's avatar Barry Warsaw

<rotorobj>.setkey() now requires exactly one argument

parent 1f0a1667
...@@ -21,5 +21,8 @@ print B1 ...@@ -21,5 +21,8 @@ print B1
if B1 <> B: if B1 <> B:
print 'decryptmore failed' print 'decryptmore failed'
r.setkey() try:
r.setkey()
except TypeError:
pass
r.setkey('you guessed it!') r.setkey('you guessed it!')
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment