diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-04 22:33:16 +0200 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-04 22:33:16 +0200 |
commit | 2ef747cb778a45ec7eb96f5ba5f725bbf53e970c (patch) | |
tree | b0694504eee386e465bf832cb64fc13755a853d5 /Lib/packaging/run.py | |
parent | 35a4d01a927a9ad0a774eec6a9ee1b728279c5b6 (diff) | |
download | cpython-git-2ef747cb778a45ec7eb96f5ba5f725bbf53e970c.tar.gz |
Cleanup in packaging: don’t unnecessarily instantiate exceptions
Diffstat (limited to 'Lib/packaging/run.py')
-rw-r--r-- | Lib/packaging/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/packaging/run.py b/Lib/packaging/run.py index 1895dde4cc..7e791a4a3c 100644 --- a/Lib/packaging/run.py +++ b/Lib/packaging/run.py @@ -383,7 +383,7 @@ def _search(dispatcher, args, **kw): """ #opts = _parse_args(args[1:], '', ['simple', 'xmlrpc']) # 1. what kind of index is requested ? (xmlrpc / simple) - raise NotImplementedError() + raise NotImplementedError actions = [ |