Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c03544d

Browse files
committed
minor indentation fix
1 parent 7bd116c commit c03544d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_qt4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ def _get_key(self, event):
369369
# in that order)
370370
for modifier, prefix, Qt_key in self._modifier_keys:
371371
if (event.key() != Qt_key and
372-
int(event.modifiers()) & modifier == modifier):
372+
int(event.modifiers()) & modifier == modifier):
373373
key = u'{0}+{1}'.format(prefix, key)
374374

375375
return key

0 commit comments

Comments
 (0)