summaryrefslogtreecommitdiffstats
path: root/scripts/pybootchartgui
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/pybootchartgui')
-rw-r--r--scripts/pybootchartgui/pybootchartgui/parsing.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/parsing.py b/scripts/pybootchartgui/pybootchartgui/parsing.py
index c8a6a5721a..ed61825d23 100644
--- a/scripts/pybootchartgui/pybootchartgui/parsing.py
+++ b/scripts/pybootchartgui/pybootchartgui/parsing.py
@@ -675,8 +675,7 @@ def parse_paths(writer, state, paths, mintime):
675 continue 675 continue
676 #state.filename = path 676 #state.filename = path
677 if os.path.isdir(path): 677 if os.path.isdir(path):
678 files = [ f for f in [os.path.join(path, f) for f in os.listdir(path)] ] 678 files = sorted([os.path.join(path, f) for f in os.listdir(path)])
679 files.sort()
680 state = parse_paths(writer, state, files, mintime) 679 state = parse_paths(writer, state, files, mintime)
681 elif extension in [".tar", ".tgz", ".gz"]: 680 elif extension in [".tar", ".tgz", ".gz"]:
682 if extension == ".gz": 681 if extension == ".gz":