diff --git a/chyron_module.py b/chyron_module.py index 670151a..1973ea7 100644 --- a/chyron_module.py +++ b/chyron_module.py @@ -82,7 +82,7 @@ class ChyronItem(): self.itemComputedString = "" def setupItem(self, name, title, content): - print("Setting up Item {", name,"}[", title, content, "]") + print("\nSetting up Item {", name,"}[", title, content, "]") self.itemName = name self.itemTitle = title self.itemContent = content diff --git a/commands/implemented/command_chyron.py b/commands/implemented/command_chyron.py index 41f2a3e..f7c8264 100644 --- a/commands/implemented/command_chyron.py +++ b/commands/implemented/command_chyron.py @@ -41,7 +41,7 @@ class CommandChyron(AbstractCommand, metaclass=ABCMeta): chyron.main() chyron.updateChyronFile() - returnMessage = "@" + user_message.user + " updated the chyron!" + returnMessage = "@" + user_message.user + " updated the chyron!\n" bot.return_message(returnMessage) def get_help(self): diff --git a/commands/implemented/command_tempText.py b/commands/implemented/command_tempText.py index 00b18ce..a790903 100644 --- a/commands/implemented/command_tempText.py +++ b/commands/implemented/command_tempText.py @@ -37,7 +37,7 @@ class CommandChyron(AbstractCommand, metaclass=ABCMeta): newText = newText + word + " " counter = counter + 1 newText = newText[:-1] # Gets rid of last space - print(tempParsedMessage[2], newText) + #print(tempParsedMessage[2], newText) tempText.itemName = tempParsedMessage[2] tempText.itemContent = newText tempTextModule.makeItem(tempText) @@ -45,7 +45,7 @@ class CommandChyron(AbstractCommand, metaclass=ABCMeta): tempText.main() #tempTextModule.update_tempTextFiles() - returnMessage = "@" + user_message.user + " updated the temptextFiles!" + returnMessage = "@" + user_message.user.name + " updated the temptextFiles!\n" bot.return_message(returnMessage) def get_help(self): diff --git a/tempText_Module.py b/tempText_Module.py index 4b9a4e7..b7e93c1 100644 --- a/tempText_Module.py +++ b/tempText_Module.py @@ -63,7 +63,7 @@ class tempTextItem(): self.itemComputedString = "" def setupItem(self, name, title, content): - print("Setting up tempTextItem {", name,"}[", title, content, "]") + print("\nSetting up tempTextItem {", name,"}[", title, content, "]") self.itemName = name self.itemTitle = title self.itemContent = content