import os imports os.path
This commit is contained in:
parent
3dfb3cdcd8
commit
4ed199bd17
2 changed files with 4 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
##
|
##
|
||||||
|
|
||||||
import os, os.path
|
import os
|
||||||
import math
|
import math
|
||||||
import time
|
import time
|
||||||
import gtk
|
import gtk
|
||||||
|
|
|
@ -1687,7 +1687,10 @@ _('If "%s" accepts this request you will know his or her status.') % jid)
|
||||||
mw = gajim.interface.msg_win_mgr.create_window(contact, account, type)
|
mw = gajim.interface.msg_win_mgr.create_window(contact, account, type)
|
||||||
|
|
||||||
if not private_chat:
|
if not private_chat:
|
||||||
|
print mw.window.get_property('visible')
|
||||||
|
print mw.window
|
||||||
chat_control = ChatControl(mw, contact, account)
|
chat_control = ChatControl(mw, contact, account)
|
||||||
|
print 'after contstruct'
|
||||||
else:
|
else:
|
||||||
chat_control = PrivateChatControl(mw, contact, account)
|
chat_control = PrivateChatControl(mw, contact, account)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue