shithub: pokecrystal

Download patch

ref: e04a7aa37585162d366d2075b378946ca8484429
parent: 66b65c854b09545fa24973e41bc2fe250a4dd068
author: Bryan Bishop <[email protected]>
date: Fri May 11 10:50:53 EDT 2012

never show a comma in front of a 7 on a newline

--- a/extras/crystal.py
+++ b/extras/crystal.py
@@ -2247,7 +2247,7 @@
                     output += "\""
                     was_comma = False
 
-                if not was_comma:
+                if not was_comma and not new_line:
                     output += ", "
 
                 output += "$%.2x\n" % (byte)