8000 Fix: positional argument specifiers are required by Python 2.6 · madbouncer/matplotlib@9ed51ec · GitHub
[go: up one dir, main page]

Skip to content

Commit 9ed51ec

Browse files
committed
Fix: positional argument specifiers are required by Python 2.6
1 parent 5302eff commit 9ed51ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_wx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1254,7 +1254,7 @@ def _get_key(self, evt):
12541254
[evt.AltDown, 'alt'],
12551255
[evt.ControlDown, 'ctrl'], ):
12561256
if meth():
1257-
key = '{}+{}'.format(prefix, key)
1257+
key = '{0}+{1}'.format(prefix, key)
12581258

12591259
return key
12601260

0 commit comments

Comments
 (0)
0