From 0072aeb3bb628a98acb1aa1eb68be23742ab233e Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 24 Feb 2015 22:30:13 +0530 Subject: [PATCH] [hotfix] removed unicode literals from minify.py --- frappe/utils/minify.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frappe/utils/minify.py b/frappe/utils/minify.py index ed3bd9787c..667879f056 100644 --- a/frappe/utils/minify.py +++ b/frappe/utils/minify.py @@ -27,7 +27,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # */ -from __future__ import unicode_literals from StringIO import StringIO @@ -209,4 +208,4 @@ class JavascriptMinify(object): self.theLookahead = None self._jsmin() - self.instream.close() \ No newline at end of file + self.instream.close()