aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2014-09-12 18:33:51 +0100
committerBryn M. Reeves <bmr@redhat.com>2014-09-12 18:33:51 +0100
commitc5fd816c89a07640cf5645e98655614b14a6fa91 (patch)
treeb8023f46fca99e4ce2a76d4e144ab458183cb4c9
parentad4bea5fa2f51d5373b98b826c4fbe3fa0c28916 (diff)
downloadsos-c5fd816c89a07640cf5645e98655614b14a6fa91.tar.gz
[plugin] fix indentation in Plugin._collect_copy_specs()
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py
index 7a345a4f..20bb2f62 100644
--- a/sos/plugins/__init__.py
+++ b/sos/plugins/__init__.py
@@ -595,8 +595,8 @@ class Plugin(object):
def _collect_copy_specs(self):
for path in self.copy_paths:
- self._log_info("collecting path '%s'" % path)
- self._do_copy_path(path)
+ self._log_info("collecting path '%s'" % path)
+ self._do_copy_path(path)
def _collect_cmd_output(self):
for progs in zip(self.collect_cmds):