Merge pull request #792 from stefanv/gtk_py3

Fix Py3 exception in GTK plugin.
This commit is contained in:
Stefan van der Walt
2013-10-17 04:45:02 -07:00
+1 -1
View File
@@ -5,7 +5,7 @@ try:
# or else the gui import might trample another
# gui's pyos_inputhook.
window_manager.acquire('gtk')
except GuiLockError, gle:
except GuiLockError as gle:
print(gle)
else:
try: