Skip to content

Commit

Permalink
removed lower() on the filename
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Elson authored and mspacek committed Jul 5, 2012
1 parent 41aa505 commit f60f942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/backend_bases.py
Expand Up @@ -2114,7 +2114,7 @@ def get_default_filename(self):
a default filename.
"""
default_filename = self.get_window_title() or 'image'
default_filename = default_filename.lower().replace(' ', '_')
default_filename = default_filename.replace(' ', '_')
return default_filename + '.' + self.get_default_filetype()

def switch_backends(self, FigureCanvasClass):
Expand Down

0 comments on commit f60f942

Please sign in to comment.