netarch.crypto.freqgraph should repr() before printing

This commit is contained in:
pi-rho 2013-02-04 13:07:27 -06:00
parent e0e0ea7aa8
commit 104b85a736
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ def freqgraph(f):
items.sort(cmp2)
for c, n in items:
print '%s: %s' % (c, '#' * n)
print '%s: %s' % (repr(c), '#' * n)
def neighbors(txt):