Skip to content

Commit 2c60848

Browse files
committed
changed the default backend in rcsetup from WXAgg, which
is not certain to be present, to Agg. svn path=/trunk/matplotlib/; revision=4648
1 parent dd2cc68 commit 2c60848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/rcsetup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def __call__(self, s):
275275

276276
# a map from key -> value, converter
277277
defaultParams = {
278-
'backend' : ['WXAgg', validate_backend],
278+
'backend' : ['Agg', validate_backend], # agg is certainly present
279279
'numerix' : ['numpy', validate_numerix],
280280
'maskedarray' : [False, validate_bool],
281281
'toolbar' : ['toolbar2', validate_toolbar],

0 commit comments

Comments
 (0)