This commit is contained in:
Martin 2024-09-19 22:34:54 +08:00 committed by GitHub
commit 5c15f247b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1303,7 +1303,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: