diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-05-11 14:29:19 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-11 14:29:19 -0500 |
commit | 7d420327f25e3ad772034590d4415eb0199ca8a8 (patch) | |
tree | b0bdb8180a32e0e6397cf98d8e9e51c2148a1157 | |
parent | 3bbe68dbfad33b4932bb24fd403017b941f44b31 (diff) |
fix a TextScript/MainText bug where '@' on a newline had an extra comma/param to db
original-commit-id: 66b65c854b09545fa24973e41bc2fe250a4dd068
-rw-r--r-- | crystal.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2228,7 +2228,7 @@ class MainText(TextCommand): output += "@\"\n" new_line = True elif not in_quotes: - if not was_comma: + if not was_comma and not new_line: output += ", " output += "\"@\"\n" |