diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2013-11-14 16:08:58 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2013-11-14 16:08:58 +0000 |
commit | 6d867f95cca6f20b41684a3b96722f6f4f5d6e71 (patch) | |
tree | eed933412f9eab5cad62caa92e22ef815b1b4ac4 | |
parent | 0abe23abd5a7b7d6eb6e403f2fb94ae762ce73e3 (diff) | |
download | sos-6d867f95cca6f20b41684a3b96722f6f4f5d6e71.tar.gz |
Remove unused urllib import from plugins module
The urllib import via six.moves in the plugins module is unused.
This causes an exception on some distributions when attempting to
import the moved module.
Drop the import since nothing in the plugin classes is using it.
Fixes Issue #218
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py index 8a55e6b6..d5cabde9 100644 --- a/sos/plugins/__init__.py +++ b/sos/plugins/__init__.py @@ -38,7 +38,7 @@ import fnmatch # PYCOMPAT import six -from six.moves import urllib, zip, filter +from six.moves import zip, filter try: import json |