File: 0001-fix-broken-distutils.patch

package info (click to toggle)
python-iso8601 0.1.13-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 176 kB
  • sloc: python: 295; makefile: 146
file content (22 lines) | stat: -rw-r--r-- 594 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From 31acbbc79edc6240b0c48b009994c517c87ff54d Mon Sep 17 00:00:00 2001
From: Benjamin Mako Hill <mako@debian.org>
Date: Thu, 28 Aug 2014 10:52:33 -0700
Subject: fix-broken-distutils

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index e9dc75d..0f89976 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ import os
 try:
     from setuptools import setup
 except ImportError:
-    from distutils import setup
+    from distutils.core import setup
 
 long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()