Skip to content

Commit

Permalink
some other random stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Ample Nerd committed Nov 5, 2011
1 parent c6dbcf7 commit fe9c071
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion convert.py
Expand Up @@ -21,7 +21,12 @@ def printlen(size):
for i in range(length):
if not len(table[i][size]) == 0:
for s in table[i][size]:
print "".join(s)
for c in s:
if c == "":
print "_",
else:
print c,
print "."


vals = [
Expand Down

0 comments on commit fe9c071

Please sign in to comment.