summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2010-11-01 21:45:43 +0100
committerJon Bergli Heier <snakebite@jvnv.net>2010-11-01 21:45:43 +0100
commit15b4d293e7012a405cf73c073139f9065508b4d2 (patch)
tree5a2c34c1839d38afe77e699157bef656aeafb3ee /modules
parentb721c21ded94187f7d34e747e7dc8713515d23ce (diff)
quotes: Import the re module.
Diffstat (limited to 'modules')
-rw-r--r--modules/quotes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/quotes.py b/modules/quotes.py
index 8a113c9..cf3c794 100644
--- a/modules/quotes.py
+++ b/modules/quotes.py
@@ -4,7 +4,7 @@ info = {
'description': 'Allows users to access a quote database.',
}
-import random, time
+import random, time, re
from pyPgSQL import PgSQL
class Quotes: