Skip to content

Commit

Permalink
Merge pull request matplotlib#2217 from AdamHeck/master
Browse files Browse the repository at this point in the history
Fix false detection of gtk3 bindings during install
  • Loading branch information
mdboom committed Jul 16, 2013
1 parent cb909ee commit accab43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setupext.py
Original file line number Diff line number Diff line change
Expand Up @@ -1473,7 +1473,7 @@ def check(self):
raise CheckFailed("Can't build with Travis")

if sys.version_info[0] >= 3:
return "gtk3agg backend does not work on Python 3"
raise CheckFailed("gtk3agg backend does not work on Python 3")

# This check needs to be performed out-of-process, because
# importing gi and then importing regular old pygtk afterward
Expand Down

0 comments on commit accab43

Please sign in to comment.