aboutsummaryrefslogtreecommitdiff
path: root/autosync
diff options
context:
space:
mode:
Diffstat (limited to 'autosync')
-rw-r--r--autosync/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/autosync/__init__.py b/autosync/__init__.py
index ec688f8..df899c7 100644
--- a/autosync/__init__.py
+++ b/autosync/__init__.py
@@ -91,7 +91,7 @@ def run():
if firstArg.startswith("@"):
if firstArg.startswith("@@"): # list available entries for tabfile
- elts = list(getTab(name=firstArg.lstrip("@")))
+ elts = list(sorted(getTab(name=firstArg.lstrip("@"))))
maxLenName = max(len(line[0]) for line in elts)
maxLenSrc = max(len(line[1]) for line in elts)