Better Scriptability by Removing Unnecessary Comma in List Output

This commit is contained in:
GS
2017-11-21 21:24:24 +01:00
parent 2c8f072499
commit 9ea667f201
2 changed files with 2 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ def CMDConnect(aliases, command=False):
def CMDList(option, opt, value, parser):
print(', '.join(str(p) for p in conf.sections()))
print(' '.join(str(p) for p in conf.sections()))
def CMDFullList(option, opt, value, parser):