From 678dc5fb20d5dabbef80f2b7ce07d00a263d8ee9 Mon Sep 17 00:00:00 2001 From: larryhaja Date: Wed, 13 Nov 2013 19:13:30 -0800 Subject: python/python-dateutil: Upgraded to 2.2 Signed-off-by: Robby Workman --- .../python-dateutil-2.1-open-utf-8.patch | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 python/python-dateutil/python-dateutil-2.1-open-utf-8.patch (limited to 'python/python-dateutil/python-dateutil-2.1-open-utf-8.patch') diff --git a/python/python-dateutil/python-dateutil-2.1-open-utf-8.patch b/python/python-dateutil/python-dateutil-2.1-open-utf-8.patch deleted file mode 100644 index 7b1784378f..0000000000 --- a/python/python-dateutil/python-dateutil-2.1-open-utf-8.patch +++ /dev/null @@ -1,20 +0,0 @@ -=== modified file 'setup.py' ---- setup.py 2012-04-29 13:32:22 +0000 -+++ setup.py 2012-04-29 13:34:16 +0000 -@@ -1,5 +1,6 @@ - #!/usr/bin/python - from os.path import isfile, join -+import codecs - import glob - import os - import re -@@ -13,7 +14,7 @@ - - TOPDIR = os.path.dirname(__file__) or "." - VERSION = re.search('__version__ = "([^"]+)"', -- open(TOPDIR + "/dateutil/__init__.py").read()).group(1) -+ codecs.open(TOPDIR + "/dateutil/__init__.py", encoding='utf-8').read()).group(1) - - - setup(name="python-dateutil", - -- cgit v1.2.3