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:
Adam Waldenberg 2013-06-14 04:20:09 +02:00
parent 764538f537
commit 018647d7d8
1 changed files with 1 additions and 0 deletions

View File

@ -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