Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
fix: Don't drop characters from the end of the string
Browse files Browse the repository at this point in the history
  • Loading branch information
rsavoye committed Feb 25, 2024
1 parent 0a10de0 commit 5974244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tm_admin/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit 5974244

Please sign in to comment.