From 413ea7b6e724af5a4f59da6d7943b3ba3e4b12da Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sat, 7 May 2005 14:02:16 +0000 Subject: [PATCH] check_for_new_version move to src from src/common [has gtk stuff] --- src/{common => }/check_for_new_version.py | 4 ++-- src/gajim.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename src/{common => }/check_for_new_version.py (97%) diff --git a/src/common/check_for_new_version.py b/src/check_for_new_version.py similarity index 97% rename from src/common/check_for_new_version.py rename to src/check_for_new_version.py index d9a418662..9dc05cb23 100644 --- a/src/common/check_for_new_version.py +++ b/src/check_for_new_version.py @@ -1,8 +1,8 @@ ## common/check_for_new_version.py ## ## Gajim Team: -## - Yann Le Boulanger -## - Vincent Hanquez +## - Yann Le Boulanger +## - Vincent Hanquez ## - Nikos Kouremenos ## ## Copyright (C) 2003-2005 Gajim Team diff --git a/src/gajim.py b/src/gajim.py index 340fe31b7..969221c12 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -31,7 +31,7 @@ import os import sre import signal import common.sleepy -import common.check_for_new_version +import check_for_new_version from common import gajim from common import connection @@ -696,7 +696,7 @@ class Interface: self.show_systray() if not gajim.config.get('check_for_new_version'): - common.check_for_new_version.Check_for_new_version_dialog(self) + check_for_new_version.Check_for_new_version_dialog(self) self.init_regexp()