diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2010-11-01 21:45:43 +0100 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2010-11-01 21:45:43 +0100 |
commit | 15b4d293e7012a405cf73c073139f9065508b4d2 (patch) | |
tree | 5a2c34c1839d38afe77e699157bef656aeafb3ee | |
parent | b721c21ded94187f7d34e747e7dc8713515d23ce (diff) |
quotes: Import the re module.
-rw-r--r-- | modules/quotes.py | 2 |
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: |