8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e64f9e + 69b4233 commit 3156af0Copy full SHA for 3156af0
lib/matplotlib/backends/__init__.py
@@ -12,10 +12,11 @@
12
_log = logging.getLogger(__name__)
13
14
backend = matplotlib.get_backend()
15
-_backend_loading_tb = "".join(
+# the `str` calls here are to make non-ascii paths work on python2
16
+_backend_loading_tb = str("").join(
17
line for line in traceback.format_stack()
18
# Filter out line noise from importlib line.
- if not line.startswith(' File "<frozen importlib._bootstrap'))
19
+ if not line.startswith(str(' File "<frozen importlib._bootstrap')))
20
21
22
def pylab_setup(name=None):
0 commit comments