ref: 66b65c854b09545fa24973e41bc2fe250a4dd068
parent: f305b27025562df97aa35e0f535a0b6892f4f101
author: Bryan Bishop <[email protected]>
date: Fri May 11 10:29:19 EDT 2012
fix a TextScript/MainText bug where '@' on a newline had an extra comma/param to db
--- a/extras/crystal.py
+++ b/extras/crystal.py
@@ -2228,7 +2228,7 @@
output += "@\"\n"
new_line = True
elif not in_quotes:
- if not was_comma:
+ if not was_comma and not new_line:
output += ", "
output += "\"@\"\n"