mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
2to3/run.py: Fix compatibility issue with old Python 3.x versions (2to3 does not suport -W and -o).
This commit is contained in:
parent
38d039ada2
commit
20665cf31d
@ -17,11 +17,14 @@ try:
|
||||
except OSError:
|
||||
pass
|
||||
os.mkdir('py3k')
|
||||
for dirname in ('locales', 'docs', 'plugins'):
|
||||
for dirname in ('locales', 'docs', 'plugins', 'src', 'test'):
|
||||
shutil.copytree(dirname, os.path.join('py3k', dirname))
|
||||
for filename in ('setup.py',):
|
||||
shutil.copyfile(filename, os.path.join('py3k', filename))
|
||||
os.chdir('py3k')
|
||||
|
||||
files = ['run.py', 'src', 'plugins', 'test', 'setup.py'] + glob('scripts/*')
|
||||
args = ['-wWno', 'py3k']
|
||||
args = ['-wn']
|
||||
fixers = []
|
||||
for fix in ['all', 'def_iteritems', 'def_itervalues', 'def_iterkeys', 'reload']:
|
||||
fixers += ['-f', fix]
|
||||
|
Loading…
Reference in New Issue
Block a user