Replace 'AT' with '@' when listing jobs.
This commit is contained in:
parent
23b96552a9
commit
8122c24339
|
@ -91,9 +91,9 @@ def list_jobs(account):
|
||||||
parsedlist = []
|
parsedlist = []
|
||||||
for i in joblist.split():
|
for i in joblist.split():
|
||||||
if i.startswith(account.replace('@', 'AT')):
|
if i.startswith(account.replace('@', 'AT')):
|
||||||
parsedlist.append(i)
|
parsedlist.append(i)
|
||||||
|
|
||||||
print('\n'.join(parsedlist))
|
print('\n'.join(parsedlist).replace('AT', '@', 1))
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Reference in New Issue