[pygobject: 4/8] dsextras.py: be consistent in how distutils imports are done
- From: Dieter Verfaillie <dieterv src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pygobject: 4/8] dsextras.py: be consistent in how distutils imports are done
- Date: Fri, 21 Jan 2011 08:35:55 +0000 (UTC)
commit cebf5f09a6c5018ced64f35e7747fc81b93b823e
Author: Dieter Verfaillie <dieterv optionexplicit be>
Date: Tue Dec 14 12:29:01 2010 +0100
dsextras.py: be consistent in how distutils imports are done
dsextras.py | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/dsextras.py b/dsextras.py
index 81fdbb9..ee0b0fd 100644
--- a/dsextras.py
+++ b/dsextras.py
@@ -10,7 +10,7 @@ import fnmatch
import re
import string
-import distutils.dep_util
+from distutils import dep_util
from distutils.command.build_ext import build_ext
from distutils.command.install_lib import install_lib
from distutils.command.install_data import install_data
@@ -426,11 +426,11 @@ class Template(object):
files.append(self.override)
files.append(self.defs)
- return not distutils.dep_util.newer_group(files, self.output)
+ return not dep_util.newer_group(files, self.output)
def generate_defs(self):
for (target, sources) in self.built_defs:
- if distutils.dep_util.newer_group(sources, target):
+ if dep_util.newer_group(sources, target):
# createdefs is mostly called from the CLI !
args=['dummy', target] + sources
codegen.createdefs.main(args)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]