Skip to content

Commit

Permalink
Update dashboard.py - sort WG configurations
Browse files Browse the repository at this point in the history
Sort WG configurations alphabetically
  • Loading branch information
martin-g-it authored Sep 4, 2024
1 parent e218532 commit e35f942
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,9 @@ def _regexMatch(regex, text):

def _getConfigurationList():
# configurations = {}
for i in os.listdir(WG_CONF_PATH):
items = os.listdir(WG_CONF_PATH)
items.sort()
for i in items:
if _regexMatch("^(.{1,}).(conf)$", i):
i = i.replace('.conf', '')
try:
Expand Down

0 comments on commit e35f942

Please sign in to comment.