From c0ce08c5d71a283861fdb9e5e50e1daf4c1456ed Mon Sep 17 00:00:00 2001 From: Niru Maheswaranathan Date: Thu, 25 May 2017 15:09:56 -0700 Subject: [PATCH] fixing unicode 2.7 :bug: --- tableprint/metadata.py | 2 +- tableprint/style.py | 1 + tableprint/utils.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tableprint/metadata.py b/tableprint/metadata.py index c745d13..a0a705b 100644 --- a/tableprint/metadata.py +++ b/tableprint/metadata.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # Version info -__version__ = '0.6.8' +__version__ = '0.6.9' __license__ = 'MIT' # Project description(s) diff --git a/tableprint/style.py b/tableprint/style.py index 162295e..35dc92d 100644 --- a/tableprint/style.py +++ b/tableprint/style.py @@ -2,6 +2,7 @@ """ Table styles """ +from __future__ import print_function, unicode_literals from collections import namedtuple __all__ = ('STYLES', 'LineStyle', 'TableStyle') diff --git a/tableprint/utils.py b/tableprint/utils.py index 4efe295..9dd4e1d 100644 --- a/tableprint/utils.py +++ b/tableprint/utils.py @@ -2,6 +2,7 @@ """ Tableprint utilities """ +from __future__ import print_function, unicode_literals import re import numpy as np