From f5b40cb3b2c2074dd29a4db2d25eb41021f616d5 Mon Sep 17 00:00:00 2001 From: HadManySons Date: Thu, 8 Jun 2017 19:42:17 +0900 Subject: [PATCH] Fixed missing colon from the merge on line 115 --- AFILinkerBot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AFILinkerBot.py b/AFILinkerBot.py index 1c48bae..ce2d24f 100644 --- a/AFILinkerBot.py +++ b/AFILinkerBot.py @@ -112,7 +112,7 @@ if "form" in formattedComment: if "afform" in formattedComment or "aftoform" in formattedComment: formattedComment = formattedComment.replace('form', '') - else + else: formattedComment = formattedComment.replace('form', 'af') formattedComment = formattedComment.replace('vol', 'v') print("Formatted Comment: " + formattedComment) @@ -222,4 +222,4 @@ print("Exiting due to keyboard interrupt") logging.info(time.strftime("%Y/%m/%d %H:%M:%S ") + "Exiting due to keyboard interrupt") - exit() \ No newline at end of file + exit()