Skip to content

Commit

Permalink
MAINT: update pavement.py for no-2to3.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Oct 15, 2013
1 parent 07a20f3 commit 415c62c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,7 @@ def bdist_superpack(options):
pyver = options.python_version
def copy_bdist(arch):
# Copy the wininst in dist into the release directory
if int(pyver[0]) >= 3:
source = os.path.join('build', 'py3k', 'dist', wininst_name(pyver))
else:
source = os.path.join('dist', wininst_name(pyver))
source = os.path.join('dist', wininst_name(pyver))
target = os.path.join(SUPERPACK_BINDIR, internal_wininst_name(arch))
if os.path.exists(target):
os.remove(target)
Expand Down

0 comments on commit 415c62c

Please sign in to comment.