Skip to content

Commit 7422f53

Browse files
committed
Fix kde_applier.py:364:41: E0602: Undefined variable 'exc' (undefined-variable)
1 parent 9424c2c commit 7422f53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gpoa/frontend/kde_applier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def call_dbus_method(file_name):
360360
getattr(dbus_iface, config['dbus_method'])(*config['dbus_args'])
361361
else:
362362
getattr(dbus_iface, config['dbus_method'])()
363-
except dbus.exceptions.DBusException as e:
363+
except dbus.exceptions.DBusException as exc:
364364
logdata = dict({'error': str(exc)})
365365
log('E31', logdata)
366366
else:

0 commit comments

Comments
 (0)