This commit is contained in:
Marc Beninca 2024-05-30 00:49:23 +02:00
parent 60dc1a3495
commit 40e80c90b0
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -21,7 +21,7 @@ def cd_browse_workspace():
absolute_path = os.path.join(directory, file) absolute_path = os.path.join(directory, file)
relative_path = os.path.relpath(absolute_path, start=project.root) relative_path = os.path.relpath(absolute_path, start=project.root)
paths.append(relative_path) paths.append(relative_path)
for path in paths: for path in sorted(paths):
print(path) print(path)