Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0385034

Browse files
committed
Fix encoding cookie
The sole non-ASCII character (in a docstring) had already been converted to UTF-8 by an earlier commit.
1 parent feec983 commit 0385034

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/matplotlib/backends/backend_pdf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# -*- coding: iso-8859-1 -*-
1+
# -*- coding: utf-8 -*-
22

33
"""
44
A PDF matplotlib backend
5-
Author: Jouni K Sepp�nen <[email protected]>
5+
Author: Jouni K Seppänen <[email protected]>
66
"""
77
from __future__ import (absolute_import, division, print_function,
88
unicode_literals)

0 commit comments

Comments
 (0)