mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2024-11-06 16:00:28 +01:00
Update dashboard.py - sort WG configurations
Sort WG configurations alphabetically
This commit is contained in:
parent
e21853286e
commit
e35f942964
@ -1297,7 +1297,9 @@ def _regexMatch(regex, text):
|
|||||||
|
|
||||||
def _getConfigurationList():
|
def _getConfigurationList():
|
||||||
# configurations = {}
|
# 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):
|
if _regexMatch("^(.{1,}).(conf)$", i):
|
||||||
i = i.replace('.conf', '')
|
i = i.replace('.conf', '')
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user