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,7 +245,6 @@ class JapaneseTransliterator(object):
codepoints = map(lambda char: ord(char), list(text)) codepoints = map(lambda char: ord(char), list(text))
for codepoint in codepoints: for codepoint in codepoints:
print codepoint
if codepoint >= range_start and codepoint <= range_end: if codepoint >= range_start and codepoint <= range_end:
transposed_text += unichr(codepoint + distance) transposed_text += unichr(codepoint + distance)
else: else: