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

This commit is contained in:
Barry Warsaw 1997-01-02 20:02:44 +00:00
parent 9121ab9433
commit 5afafad82d

View file

@ -21,5 +21,8 @@
if B1 <> B:
print 'decryptmore failed'
r.setkey()
try:
r.setkey()
except TypeError:
pass
r.setkey('you guessed it!')