Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
FIX: remove un-needed quotes
  • Loading branch information
tacaswell committed Jan 3, 2016
commit 3a5b577b3944f6c4e8e94b68d02eb261240799e5
12 changes: 6 additions & 6 deletions lib/matplotlib/mpl-data/stylelib/classic.mplstyle
Original file line number Diff line number Diff line change
Expand Up @@ -215,12 +215,12 @@ axes.spines.top : True
polaraxes.grid : True # display grid on polar axes
axes3d.grid : True # display grid on 3d axes

date.autoformatter.year :'%Y'
date.autoformatter.month :'%b %Y'
date.autoformatter.day :'%b %d %Y'
date.autoformatter.hour :'%H:%M:%S'
date.autoformatter.minute :'%H:%M:%S.%f'
date.autoformatter.second :'%H:%M:%S.%f'
date.autoformatter.year : %Y
date.autoformatter.month : %b %Y
date.autoformatter.day : %b %d %Y
date.autoformatter.hour : %H:%M:%S
date.autoformatter.minute : %H:%M:%S.%f
date.autoformatter.second : %H:%M:%S.%f

### TICKS
# see http://matplotlib.org/api/axis_api.html#matplotlib.axis.Tick
Expand Down
12 changes: 6 additions & 6 deletions matplotlibrc.template
Original file line number Diff line number Diff line change
Expand Up @@ -338,12 +338,12 @@ backend : %(backend)s
# These values map to the scales:
# {'year': 365, 'month': 30, 'day': 1, 'hour': 1/24, 'minute': 1 / (24 * 60)}

# date.autoformatter.year : '%%Y'
# date.autoformatter.month : '%%Y-%%m'
# date.autoformatter.day : '%%Y-%%m-%%d'
# date.autoformatter.hour : '%%H:%%M'
# date.autoformatter.minute : '%%H:%%M:%%S'
# date.autoformatter.second : '%%H:%%M:%%S.%%f'
# date.autoformatter.year : %%Y
# date.autoformatter.month : %%Y-%%m
# date.autoformatter.day : %%Y-%%m-%%d
# date.autoformatter.hour : %%H:%%M
# date.autoformatter.minute : %%H:%%M:%%S
# date.autoformatter.second : %%H:%%M:%%S.%%f

### TICKS
# see http://matplotlib.org/api/axis_api.html#matplotlib.axis.Tick
Expand Down