diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-05-11 14:50:53 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-11 14:50:53 -0500 |
commit | 25e4f54e5a02b3609ef21243d79315a605bbbdb6 (patch) | |
tree | 765fe6506da865cf09bf15a2146ffa969b521cef | |
parent | 7d420327f25e3ad772034590d4415eb0199ca8a8 (diff) |
never show a comma in front of a 7 on a newline
original-commit-id: e04a7aa37585162d366d2075b378946ca8484429
-rw-r--r-- | crystal.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2247,7 +2247,7 @@ class MainText(TextCommand): output += "\"" was_comma = False - if not was_comma: + if not was_comma and not new_line: output += ", " output += "$%.2x\n" % (byte) |