aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2014-06-06 20:40:26 +0100
committerBryn M. Reeves <bmr@redhat.com>2014-06-06 20:40:26 +0100
commitc3f54c342de5d24ae67314c671a930abab33a489 (patch)
tree786ea6691181969c2e1238269984c49ce77a3f8c
parentcab2c71349361166a16408befac6b2b3b743c50a (diff)
downloadsos-c3f54c342de5d24ae67314c671a930abab33a489.tar.gz
[archive] fix whitespace in _build_archive() comment
stokachu++ Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/archive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/archive.py b/sos/archive.py
index caf621e7..bfc8a120 100644
--- a/sos/archive.py
+++ b/sos/archive.py
@@ -260,7 +260,7 @@ class TarFileArchive(FileCacheArchive):
def _build_archive(self):
tar = tarfile.open(self._archive_name, mode="w")
- # we need to pass the absolute path to the archive root but we
+ # we need to pass the absolute path to the archive root but we
# want the names used in the archive to be relative.
tar.add(self._archive_root, arcname=os.path.split(self._name)[1],
filter=self.copy_permissions_filter)