summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander2016-01-06 16:35:31 +0000
committerMagnus Hagander2016-01-06 16:35:31 +0000
commit699ff05ae4392eb4e44a46c5202189a48ba48681 (patch)
tree5fc1703cb9f1771894ae326b88d64707a08e4736
parent8010e5acbb1e03c0ebd899a3cf043b4ce9d5cfd6 (diff)
Fully qualify more imports
-rwxr-xr-xtools/commitfest/check_patches_in_archives.py2
-rwxr-xr-xtools/commitfest/update_archive_threads.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/commitfest/check_patches_in_archives.py b/tools/commitfest/check_patches_in_archives.py
index 2658346..a0060ac 100755
--- a/tools/commitfest/check_patches_in_archives.py
+++ b/tools/commitfest/check_patches_in_archives.py
@@ -23,7 +23,7 @@ django.setup()
from django.db import connection
from django.conf import settings
-from commitfest.models import MailThreadAttachment
+from pgcommitfest.commitfest.models import MailThreadAttachment
if __name__ == "__main__":
debug = "--debug" in sys.argv
diff --git a/tools/commitfest/update_archive_threads.py b/tools/commitfest/update_archive_threads.py
index 707e545..d32ea1c 100755
--- a/tools/commitfest/update_archive_threads.py
+++ b/tools/commitfest/update_archive_threads.py
@@ -18,8 +18,8 @@ django.setup()
from django.db import connection
-from commitfest.models import MailThread
-from commitfest.ajax import _archivesAPI, parse_and_add_attachments
+from pgcommitfest.commitfest.models import MailThread
+from pgcommitfest.commitfest.ajax import _archivesAPI, parse_and_add_attachments
if __name__ == "__main__":
debug = "--debug" in sys.argv