aboutsummaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils.py')
-rwxr-xr-xutils.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/utils.py b/utils.py
index 81366822..f2751f64 100755
--- a/utils.py
+++ b/utils.py
@@ -25,10 +25,7 @@ __date__ = "$Date: 2010/10/25 $"
__copyright__ = "Copyright (c) 2010 Cedric Bonhomme"
__license__ = "GPLv3"
-IMPORT_ERROR = []
-
import re
-import string
import hashlib
import sqlite3
import operator
@@ -51,7 +48,6 @@ from datetime import datetime
from string import punctuation
from collections import Counter
from collections import OrderedDict
-from collections import defaultdict
from StringIO import StringIO
bgstack15