summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorDusty Phillips <buchuki@gmail.com>2008-10-05 21:46:28 -0400
committerDusty Phillips <buchuki@gmail.com>2008-10-05 21:46:28 -0400
commit103d1a347a7515c67af7dbd3241a4970dd46faac (patch)
treef406476820abc269df2137afc690f55080e0656f /main
parentf583f6aa090199aa6577c1cdc00074f616515410 (diff)
downloadarchweb-103d1a347a7515c67af7dbd3241a4970dd46faac.tar.gz
archweb-103d1a347a7515c67af7dbd3241a4970dd46faac.zip
drop a bunch of unusued imports
Diffstat (limited to 'main')
-rw-r--r--main/models.py1
-rw-r--r--main/tests.py4
2 files changed, 1 insertions, 4 deletions
diff --git a/main/models.py b/main/models.py
index b1a68460..f8f86995 100644
--- a/main/models.py
+++ b/main/models.py
@@ -2,7 +2,6 @@ from django.db import models
from django.db.models import Q
from django.contrib.auth.models import User
from archweb_dev.main.middleware import get_user
-import re
###########################
### User Profile Class ####
diff --git a/main/tests.py b/main/tests.py
index d0e87729..543a0c13 100644
--- a/main/tests.py
+++ b/main/tests.py
@@ -1,8 +1,6 @@
## test cases
from django.test import TestCase
-from main.models import Mirror, Press, AltForum, Donor, News
-from main.models import Arch, Repo, Package, PackageFile, PackageDepend
-from main.models import Todolist, TodolistPkg, Wikipage
+from main.models import Package, PackageDepend
from django.contrib.auth.models import User
class ModelTest(TestCase):