updated to use dh_python2
[python-iso8601.debian] / debian / patches / 0001-fixed-issue-with-distutils-that-does-not-work-in-new.patch
1 From 66eb3fa3ed269470155b08d63dc848b0760ed48b Mon Sep 17 00:00:00 2001
2 From: Benjamin Mako Hill <mako@atdot.cc>
3 Date: Fri, 11 Feb 2011 14:22:11 -0500
4 Subject: fixed issue with distutils that does not work in new version of python
5
6 ---
7  setup.py |    2 +-
8  1 files changed, 1 insertions(+), 1 deletions(-)
9
10 diff --git a/setup.py b/setup.py
11 index cdb61ec..2daf5b1 100644
12 --- a/setup.py
13 +++ b/setup.py
14 @@ -1,7 +1,7 @@
15  try:
16      from setuptools import setup
17  except ImportError:
18 -    from distutils import setup
19 +    from distutils.core import setup
20  
21  long_description="""Simple module to parse ISO 8601 dates
22  
23 -- 
24 1.7.2.3
25

Benjamin Mako Hill || Want to submit a patch?