remove two extra parenthesis. fixes #3256
This commit is contained in:
parent
12bede65b0
commit
7abaabc4b8
1 changed files with 2 additions and 2 deletions
|
@ -4273,7 +4273,7 @@ class RosterWindow:
|
||||||
if not os.path.isfile(path_opened):
|
if not os.path.isfile(path_opened):
|
||||||
path_opened = os.path.join(path, 'opened.png')
|
path_opened = os.path.join(path, 'opened.png')
|
||||||
if os.path.isfile(path_opened):
|
if os.path.isfile(path_opened):
|
||||||
pixo = gtk.gdk.pixbuf_new_from_file(path_opened))
|
pixo = gtk.gdk.pixbuf_new_from_file(path_opened)
|
||||||
else:
|
else:
|
||||||
pixo = None
|
pixo = None
|
||||||
self.jabber_state_images['opened'] = self.load_iconset(path, pixo)
|
self.jabber_state_images['opened'] = self.load_iconset(path, pixo)
|
||||||
|
@ -4282,7 +4282,7 @@ class RosterWindow:
|
||||||
if not os.path.isfile(path_closed):
|
if not os.path.isfile(path_closed):
|
||||||
path_closed = os.path.join(path, 'closed.png')
|
path_closed = os.path.join(path, 'closed.png')
|
||||||
if os.path.isfile(path_closed):
|
if os.path.isfile(path_closed):
|
||||||
pixc = gtk.gdk.pixbuf_new_from_file(path_closed))
|
pixc = gtk.gdk.pixbuf_new_from_file(path_closed)
|
||||||
else:
|
else:
|
||||||
pixc = None
|
pixc = None
|
||||||
self.jabber_state_images['closed'] = self.load_iconset(path, pixc)
|
self.jabber_state_images['closed'] = self.load_iconset(path, pixc)
|
||||||
|
|
Loading…
Add table
Reference in a new issue