except:pass WebP error on WinXP

This commit is contained in:
Headshotnoby 2021-06-22 11:44:25 -04:00
parent 4e8daaa21f
commit 3074aa1341

View File

@ -2077,7 +2077,8 @@ class gui(QtGui.QWidget):
if "effects" not in self.features: return if "effects" not in self.features: return
self.effectview.set_play_once(False) self.effectview.set_play_once(False)
self.effectview.play(effect) try: self.effectview.play(effect)
except: pass # Windows XP webp error with Pillow
print "effect", repr(effect) print "effect", repr(effect)
def start_chat_ticking(self): def start_chat_ticking(self):