remove two extra parenthesis. fixes #3256
This commit is contained in:
parent
12bede65b0
commit
7abaabc4b8
|
@ -4273,7 +4273,7 @@ class RosterWindow:
|
|||
if not os.path.isfile(path_opened):
|
||||
path_opened = os.path.join(path, 'opened.png')
|
||||
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:
|
||||
pixo = None
|
||||
self.jabber_state_images['opened'] = self.load_iconset(path, pixo)
|
||||
|
@ -4282,7 +4282,7 @@ class RosterWindow:
|
|||
if not os.path.isfile(path_closed):
|
||||
path_closed = os.path.join(path, 'closed.png')
|
||||
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:
|
||||
pixc = None
|
||||
self.jabber_state_images['closed'] = self.load_iconset(path, pixc)
|
||||
|
|
Loading…
Reference in New Issue