From f31ffe2fdf82a2cd339aa851d3d388811200bb86 Mon Sep 17 00:00:00 2001
From: Andrew Engelbrecht <andrew@localhost.localdomain>
Date: Sat, 18 Jul 2015 18:18:49 -0400
Subject: [PATCH] fixed a potential bug

this should be set as a flag.
---
 edward-bot | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/edward-bot b/edward-bot
index 634c3de..cc352bc 100755
--- a/edward-bot
+++ b/edward-bot
@@ -173,7 +173,7 @@ def split_message (text):
             '.*' + \
             '-----END PGP MESSAGE-----)', \
             text, \
-            re.DOTALL)
+            flags=re.DOTALL)
 
     if gpg_matches != None:
         gpg_chunks = gpg_matches.groups()
-- 
2.25.1