From 104b85a736f309d5bec26a9aa37557b81f8f502b Mon Sep 17 00:00:00 2001 From: pi-rho Date: Mon, 4 Feb 2013 13:07:27 -0600 Subject: [PATCH] netarch.crypto.freqgraph should repr() before printing --- netarch/crypto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netarch/crypto.py b/netarch/crypto.py index 52f9a56..7fea047 100644 --- a/netarch/crypto.py +++ b/netarch/crypto.py @@ -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):