from common.exceptions import GajimGeneralException as GajimGeneralException -> from common.exceptions import GajimGeneralException

This commit is contained in:
Nikos Kouremenos 2006-10-10 15:29:10 +00:00
parent a25b63bcc3
commit 627469e5e0
6 changed files with 6 additions and 6 deletions

View file

@ -39,7 +39,7 @@ from common import gajim
from common import connection from common import connection
from common import passwords from common import passwords
from common.exceptions import GajimGeneralException as GajimGeneralException from common.exceptions import GajimGeneralException
#---------- PreferencesWindow class -------------# #---------- PreferencesWindow class -------------#
class PreferencesWindow: class PreferencesWindow:

View file

@ -31,7 +31,7 @@ from calendar import timegm
from common.fuzzyclock import FuzzyClock from common.fuzzyclock import FuzzyClock
from htmltextview import HtmlTextView from htmltextview import HtmlTextView
from common.exceptions import GajimGeneralException as GajimGeneralException from common.exceptions import GajimGeneralException
class ConversationTextview: class ConversationTextview:
'''Class for the conversation textview (where user reads already said messages) '''Class for the conversation textview (where user reads already said messages)

View file

@ -40,7 +40,7 @@ from advanced import AdvancedConfigurationWindow
from common import gajim from common import gajim
from common import helpers from common import helpers
from common.exceptions import GajimGeneralException as GajimGeneralException from common.exceptions import GajimGeneralException
class EditGroupsDialog: class EditGroupsDialog:
'''Class for the edit group dialog window''' '''Class for the edit group dialog window'''

View file

@ -49,7 +49,7 @@ import gtkgui_helpers
from common import gajim from common import gajim
from common import xmpp from common import xmpp
from common.exceptions import GajimGeneralException as GajimGeneralException from common.exceptions import GajimGeneralException
# Dictionary mapping category, type pairs to browser class, image pairs. # Dictionary mapping category, type pairs to browser class, image pairs.
# This is a function, so we can call it after the classes are declared. # This is a function, so we can call it after the classes are declared.

View file

@ -39,7 +39,7 @@ from common import helpers
from chat_control import ChatControl from chat_control import ChatControl
from chat_control import ChatControlBase from chat_control import ChatControlBase
from conversation_textview import ConversationTextview from conversation_textview import ConversationTextview
from common.exceptions import GajimGeneralException as GajimGeneralException from common.exceptions import GajimGeneralException
#(status_image, type, nick, shown_nick) #(status_image, type, nick, shown_nick)
( (

View file

@ -36,7 +36,7 @@ import notify
from common import gajim from common import gajim
from common import helpers from common import helpers
from common import passwords from common import passwords
from common.exceptions import GajimGeneralException as GajimGeneralException from common.exceptions import GajimGeneralException
from message_window import MessageWindowMgr from message_window import MessageWindowMgr
from chat_control import ChatControl from chat_control import ChatControl