diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2012-04-26 03:45:17 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2012-04-26 03:45:17 +0200 |
commit | 5d13dbda8f7c8a41475fe3ca17f2202eb0bb9322 (patch) | |
tree | 8c3bdfc007718d2211359c9dbb04b1a4ed894986 /dev-python/virtualenvwrapper/files | |
parent | 2d101f80f8a893c6fce63bf1cb5225219e9d82c1 (diff) | |
download | overlay-5d13dbda8f7c8a41475fe3ca17f2202eb0bb9322.tar.gz overlay-5d13dbda8f7c8a41475fe3ca17f2202eb0bb9322.tar.xz overlay-5d13dbda8f7c8a41475fe3ca17f2202eb0bb9322.zip |
dev-python/virtualenvwrapper: removed deprecated package, portage version is working now
Diffstat (limited to 'dev-python/virtualenvwrapper/files')
-rw-r--r-- | dev-python/virtualenvwrapper/files/python-3.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/dev-python/virtualenvwrapper/files/python-3.patch b/dev-python/virtualenvwrapper/files/python-3.patch deleted file mode 100644 index 1fe8005..0000000 --- a/dev-python/virtualenvwrapper/files/python-3.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- 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 |