diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-03-26 17:39:43 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-03-26 17:39:43 +0000 |
commit | 6182367ec0672721d1381e40aaa97c3d2f504a95 (patch) | |
tree | 578c6d9138901366234768cebf22ccd1879b4bf2 | |
parent | e39258bacc722ea9e7446c93b6443b8e1923e3a4 (diff) | |
download | sos-6182367ec0672721d1381e40aaa97c3d2f504a95.tar.gz |
Dead code removal: PluginException
Defined but never used. Delete.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/__init__.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py index 4de8c0db..0c4b9b43 100644 --- a/sos/plugins/__init__.py +++ b/sos/plugins/__init__.py @@ -60,11 +60,6 @@ def mangle_command(command): mangledname = re.sub(r"/", ".", mangledname).strip(" ._-")[0:64] return mangledname - -class PluginException(Exception): - pass - - class Plugin(object): """ This is the base class for sosreport plugins. Plugins should subclass this and set the class variables where applicable. |