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 | e04a7aa37585162d366d2075b378946ca8484429 (patch) | |
tree | 8b65bdc29425a3b740c53930bc876468befb996c | |
parent | 66b65c854b09545fa24973e41bc2fe250a4dd068 (diff) |
never show a comma in front of a 7 on a newline
-rw-r--r-- | extras/crystal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index a00b8ebd8..55e3c8bff 100644 --- a/extras/crystal.py +++ b/extras/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) |