diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2012-01-10 00:57:53 +0100 |
---|---|---|
committer | root <root@laptop.localhost> | 2012-01-10 00:58:14 +0100 |
commit | c7f0491bea4a7ab3ff006b29d68c0c7e6eacc3e3 (patch) | |
tree | 8fb2f9e732fd5e663f29f2912a02388ea7a9ed7f /dev-python/virtualenvwrapper/files/python-3.patch | |
parent | 8cf53cfa2f09690aa15718e964badfec7cb6c087 (diff) | |
download | overlay-c7f0491bea4a7ab3ff006b29d68c0c7e6eacc3e3.tar.gz overlay-c7f0491bea4a7ab3ff006b29d68c0c7e6eacc3e3.tar.xz overlay-c7f0491bea4a7ab3ff006b29d68c0c7e6eacc3e3.zip |
dev-python/virtualenvwrapper: added python3 compatible ebuild
Diffstat (limited to '')
-rw-r--r-- | dev-python/virtualenvwrapper/files/python-3.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/virtualenvwrapper/files/python-3.patch b/dev-python/virtualenvwrapper/files/python-3.patch new file mode 100644 index 0000000..1fe8005 --- /dev/null +++ b/dev-python/virtualenvwrapper/files/python-3.patch @@ -0,0 +1,24 @@ +--- a/virtualenvwrapper/hook_loader.py Sun Feb 27 09:24:38 2011 -0500 ++++ b/virtualenvwrapper/hook_loader.py Mon Feb 28 01:05:11 2011 +0000 +@@ -125,7 +125,7 @@ + continue + plugin = ep.load() + if options.listing: +- print ' {0:10} -- {1}'.format(ep.name, inspect.getdoc(plugin) or '') ++ print(' {0:10} -- {1}'.format(ep.name, inspect.getdoc(plugin) or '')) + continue + if options.sourcing: + # Show the shell commands so they can +--- a/virtualenvwrapper/user_scripts.py Sun Feb 27 09:24:38 2011 -0500 ++++ b/virtualenvwrapper/user_scripts.py Mon Feb 28 01:05:11 2011 +0000 +@@ -28,7 +28,9 @@ + log.debug('running %s', str(cmd)) + try: + return_code = subprocess.call(cmd) +- except OSError, msg: ++ except OSError: ++ import sys ++ msg = sys.exc_info()[1] + log.error('ERROR: Could not run %s. %s', script_path, str(msg)) + #log.debug('Returned %s', return_code) + return |