From: Magnus Hagander Date: Wed, 6 Jan 2016 16:35:31 +0000 (+0100) Subject: Fully qualify more imports X-Git-Url: http://git.postgresql.org/gitweb/static/developers.postgresql.org?a=commitdiff_plain;h=699ff05ae4392eb4e44a46c5202189a48ba48681;p=pgcommitfest2.git Fully qualify more imports --- 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