From 3d37006bbc6cb80fcf6484dd325c24959e31275b Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 15 Jul 2010 01:53:22 +0200 Subject: [PATCH] rename ImapSummaries to ImapFetcher to better reflect its scope --- pyfpdb/{ImapSummaries.py => ImapFetcher.py} | 2 +- pyfpdb/fpdb.pyw | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename pyfpdb/{ImapSummaries.py => ImapFetcher.py} (98%) diff --git a/pyfpdb/ImapSummaries.py b/pyfpdb/ImapFetcher.py similarity index 98% rename from pyfpdb/ImapSummaries.py rename to pyfpdb/ImapFetcher.py index f2874725..da13698c 100755 --- a/pyfpdb/ImapSummaries.py +++ b/pyfpdb/ImapFetcher.py @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -#Copyright 2008-2010 Steffen Schaumburg +#Copyright 2010 Steffen Schaumburg #This program is free software: you can redistribute it and/or modify #it under the terms of the GNU Affero General Public License as published by #the Free Software Foundation, version 3 of the License. diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index c0c72cb5..898b6ec5 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -103,7 +103,7 @@ import GuiPrefs import GuiLogView import GuiDatabase import GuiBulkImport -import ImapSummaries +import ImapFetcher import GuiRingPlayerStats import GuiTourneyPlayerStats import GuiPositionalStats @@ -722,7 +722,7 @@ class fpdb: #end def get_menu def import_imap_summaries(self, widget, data=None): - result=ImapSummaries.run(self.config, self.db) + result=ImapFetcher.run(self.config, self.db) #print "import imap summaries result:", result #end def import_imap_summaries