summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2006-12-29 00:40:32 +0000
committerphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2006-12-29 00:40:32 +0000
commit8a28a7f04ec3f3f949a90a6c2eca21a7039f7a3d (patch)
tree95f93e8cde04858d4a723aff642431b6202f9cb8 /setuptools/command
parent752f75b041328590f037092216b601d01275ca8a (diff)
downloadpython-setuptools-8a28a7f04ec3f3f949a90a6c2eca21a7039f7a3d.tar.gz
Fix import problem for bdist_rpm w/Python<2.5
git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@53181 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/bdist_rpm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/bdist_rpm.py b/setuptools/command/bdist_rpm.py
index 5485733..3adecbc 100755
--- a/setuptools/command/bdist_rpm.py
+++ b/setuptools/command/bdist_rpm.py
@@ -4,7 +4,7 @@
# finally, a kludge to track .rpm files for uploading when run on Python <2.5.
from distutils.command.bdist_rpm import bdist_rpm as _bdist_rpm
-import sys
+import sys, os
class bdist_rpm(_bdist_rpm):