Parcourir la source

Remove silly break point

Oz N Tiram il y a 8 ans
Parent
commit
663a5c0675
1 fichiers modifiés avec 0 ajouts et 1 suppressions
  1. 0 1
      pwman/util/crypto/rijndael.py

+ 0 - 1
pwman/util/crypto/rijndael.py

@@ -429,7 +429,6 @@ def encrypt(key, block):
 
 
 def decrypt(key, block):
-    import pdb; pdb.set_trace()
     return rijndael(key, len(block)).decrypt(block)