Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit debb95f

Browse filesBrowse files
committed
Fix: positional argument specifiers are required by Python 2.6
1 parent 56fe6b2 commit debb95f
Copy full SHA for debb95f

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎lib/matplotlib/backends/backend_gtk3.py

Copy file name to clipboardExpand all lines: lib/matplotlib/backends/backend_gtk3.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def _get_key(self, event):
271271
]
272272
for key_mask, prefix in modifiers:
273273
if event.state & key_mask:
274-
key = '{}+{}'.format(prefix, key)
274+
key = '{0}+{1}'.format(prefix, key)
275275

276276
return key
277277

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.