From 597424408602d262d463f0def3d2ea6ad92697dc Mon Sep 17 00:00:00 2001 From: Rob Savoye Date: Sun, 25 Feb 2024 11:01:02 -0700 Subject: [PATCH] fix: Don't drop characters from the end of the string --- tm_admin/generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tm_admin/generator.py b/tm_admin/generator.py index ce901303..21950f0e 100755 --- a/tm_admin/generator.py +++ b/tm_admin/generator.py @@ -366,7 +366,7 @@ def createSQLTable(self): # FIXME: for some reasons, this has extra characters at the end that break # the syntax - return out[:-3] + "\n" + return out + "\n" def main(): """This main function lets this class be run standalone by a bash script."""