Skip to content

Commit

Permalink
Merge pull request #425 from mdboom/fix-silent-fail-unknown-marker
Browse files Browse the repository at this point in the history
Fix silent fail unknown marker
  • Loading branch information
jdh2358 committed Aug 18, 2011
2 parents 1283b46 + 96db195 commit 62d7d60
Show file tree
Hide file tree
Showing 4 changed files with 701 additions and 759 deletions.
7 changes: 2 additions & 5 deletions lib/matplotlib/lines.py
Expand Up @@ -745,11 +745,8 @@ def set_marker(self, marker):
%(MarkerAccepts)s
"""
try:
self._marker.set_marker(marker)
except ValueError,e:
verbose.report(str(e))

self._marker.set_marker(marker)

def set_markeredgecolor(self, ec):
"""
Set the marker edge color
Expand Down
Binary file modified lib/matplotlib/tests/baseline_images/test_axes/markevery.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified lib/matplotlib/tests/baseline_images/test_axes/markevery_line.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 62d7d60

Please sign in to comment.