Remove print statement

This commit is contained in:
Ryan McGrath 2012-04-11 07:49:16 -04:00
parent 4e04fbe997
commit 38c5cf5b2d

View file

@ -245,10 +245,9 @@ class JapaneseTransliterator(object):
codepoints = map(lambda char: ord(char), list(text))
for codepoint in codepoints:
print codepoint
if codepoint >= range_start and codepoint <= range_end:
transposed_text += unichr(codepoint + distance)
else:
transposed_text += unichr(codepoint)
return transposed_text
return transposed_text