Added alphabetic sort of passwords within directory
This commit is contained in:
@ -133,7 +133,7 @@ class SearchPassService(dbus.service.Object):
|
||||
if dir_path.startswith("."):
|
||||
continue
|
||||
|
||||
for filename in files:
|
||||
for filename in sorted(files):
|
||||
if filename[-4:] != ".gpg":
|
||||
continue
|
||||
path = path_join(dir_path, filename)[:-4]
|
||||
|
Reference in New Issue
Block a user