diff options
-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 e7209020..9d428c6c 100644 --- a/sos/plugins/__init__.py +++ b/sos/plugins/__init__.py @@ -331,7 +331,7 @@ class Plugin(object): self._log_debug("copying path '%s' to archive:'%s'" % (srcpath, dest)) # if not readable(srcpath) - if not (st.st_mode & 0o444): + if not st.st_mode & 0o444: # FIXME: reflect permissions in archive self.archive.add_string("", dest) else: |