Fixed bug with ghissues truncate function. (newlines were causing problems)

This commit is contained in:
Blake Bengtson 2013-11-26 16:32:54 -06:00
parent 186f272062
commit b2c9f46d78
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ shortcuts = {"cloudbot": "ClouDev/CloudBot"}
def truncate(msg):
nmsg = msg.split(" ")
nmsg = msg.split()
out = None
x = 0
for i in nmsg: