Minor bug fix to --tamper

This commit is contained in:
Bernardo Damele
2010-10-16 21:55:34 +00:00
parent 2129935e06
commit a2997a6dce
3 changed files with 4 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ def tamper(place, value):
newWord = str()
for i in xrange(len(word)):
newWord += word[i].upper() if randomRange(0,1) else word[i].lower()
newWord += word[i].upper() if randomRange(0, 1) else word[i].lower()
retVal = retVal.replace(word, newWord)