summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-05-11 14:50:53 -0500
committerBryan Bishop <kanzure@gmail.com>2012-05-11 14:50:53 -0500
commit25e4f54e5a02b3609ef21243d79315a605bbbdb6 (patch)
tree765fe6506da865cf09bf15a2146ffa969b521cef
parent7d420327f25e3ad772034590d4415eb0199ca8a8 (diff)
never show a comma in front of a 7 on a newline
original-commit-id: e04a7aa37585162d366d2075b378946ca8484429
-rw-r--r--crystal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/crystal.py b/crystal.py
index a00b8eb..55e3c8b 100644
--- a/crystal.py
+++ b/crystal.py
@@ -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)