From 25e4f54e5a02b3609ef21243d79315a605bbbdb6 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Fri, 11 May 2012 14:50:53 -0500 Subject: never show a comma in front of a 7 on a newline original-commit-id: e04a7aa37585162d366d2075b378946ca8484429 --- crystal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3