aboutsummaryrefslogtreecommitdiffstats
path: root/sos/report/plugins/jars.py
diff options
context:
space:
mode:
Diffstat (limited to 'sos/report/plugins/jars.py')
-rw-r--r--sos/report/plugins/jars.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/report/plugins/jars.py b/sos/report/plugins/jars.py
index 0d3cf37e..4b98684e 100644
--- a/sos/report/plugins/jars.py
+++ b/sos/report/plugins/jars.py
@@ -63,7 +63,7 @@ class Jars(Plugin, RedHatPlugin):
for location in locations:
for dirpath, _, filenames in os.walk(location):
for filename in filenames:
- path = os.path.join(dirpath, filename)
+ path = self.path_join(dirpath, filename)
if Jars.is_jar(path):
jar_paths.append(path)