summaryrefslogtreecommitdiffstats
path: root/news
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2007-12-22 16:21:21 -0500
committereliott <eliott@cactuswax.net>2007-12-22 16:21:21 -0500
commitbd9a99d79193673caa568ab8c17edfd873e8a27e (patch)
treede6d7e346e98840662e2bd6f0fad70f4ed99b564 /news
parentf02fdceef9a041f363732490769f1babc8f64515 (diff)
downloadarchweb-bd9a99d79193673caa568ab8c17edfd873e8a27e.tar.gz
archweb-bd9a99d79193673caa568ab8c17edfd873e8a27e.zip
renamed imports
Diffstat (limited to 'news')
-rw-r--r--news/models.py2
-rw-r--r--news/views.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/news/models.py b/news/models.py
index acd9667c..68d2865d 100644
--- a/news/models.py
+++ b/news/models.py
@@ -1,7 +1,7 @@
from django.db import models
from django.contrib.auth.models import User
import re
-from archlinux.utils import Stripper
+from archweb_dev.utils import Stripper
class News(models.Model):
id = models.AutoField(primary_key=True)
diff --git a/news/views.py b/news/views.py
index 29f20445..5ceb3315 100644
--- a/news/views.py
+++ b/news/views.py
@@ -3,8 +3,8 @@ from django.shortcuts import get_object_or_404
from django.contrib.auth.decorators import user_passes_test
from django.contrib.auth.models import User
from django import forms
-from archlinux.utils import render_template
-from archlinux.news.models import News
+from archweb_dev.utils import render_template
+from archweb_dev.news.models import News
from datetime import date
def view(request, newsid):