diff options
-rw-r--r-- | sos/policies/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/policies/__init__.py b/sos/policies/__init__.py index ae85991c..e3c1b60d 100644 --- a/sos/policies/__init__.py +++ b/sos/policies/__init__.py @@ -555,7 +555,7 @@ No changes will be made to system configuration. xz_version = self.package_manager\ .all_pkgs()[xz_package]["version"] except Exception as e: - xz_version = [0] # deal like xz version is really old + xz_version = [u'0'] # deal like xz version is really old if xz_version >= [u'5', u'2']: cmd = "%s -T%d" % (cmd, threads) return cmd |