From e04a7aa37585162d366d2075b378946ca8484429 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Fri, 11 May 2012 14:50:53 -0500 Subject: [PATCH] never show a comma in front of a 7 on a newline --- extras/crystal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)