Using reversed() is not compatible with Python 1.5.2.

This commit is contained in:
Guido van Rossum 2004-05-04 18:18:59 +00:00
parent bac788a3cd
commit 843c734ddd
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ def _dist_try_harder(distname,version,id):
if os.path.isdir('/usr/lib/setup'):
# Check for slackware verson tag file (thanks to Greg Andruk)
verfiles = os.listdir('/usr/lib/setup')
for n in reversed(xrange(len(verfiles))):
for n in range(len(verfiles)-1, -1, -1):
if verfiles[n][:14] != 'slack-version-':
del verfiles[n]
if verfiles: