Skip to content

Commit

Permalink
Fixed support for python3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vbabiy committed Mar 15, 2011
1 parent 10ba3f3 commit 4e3bf0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
elif sys.version_info[0] == 3:
# Some extra modules are needed for Python 3, but different ones
# for different versions.
REQUIRED_MODULES.extend(['warnings', 'linecache', 'abc', 'io',
REQUIRED_MODULES.extend(['_abcoll', 'warnings', 'linecache', 'abc', 'io',
'_weakrefset', 'copyreg', 'tempfile', 'random',
'__future__', 'collections', 'keyword', 'tarfile',
'shutil', 'struct', 'copy'])
Expand Down

0 comments on commit 4e3bf0f

Please sign in to comment.