mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-16 00:28:25 +01:00
Literals in the blame module are now always in unicode.
Without this fix, there is a potential for some UnicodeEncodeErrors when using non-unicode literals with string.format().
This commit is contained in:
parent
764538f537
commit
018647d7d8
1 changed files with 1 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
|||
# along with gitinspector. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from __future__ import print_function
|
||||
from __future__ import unicode_literals
|
||||
from outputable import Outputable
|
||||
from changes import FileDiff
|
||||
import codecs
|
||||
|
|
Loading…
Reference in a new issue