Replace 'AT' with '@' when listing jobs.
This commit is contained in:
parent
23b96552a9
commit
8122c24339
|
@ -91,9 +91,9 @@ def list_jobs(account):
|
|||
parsedlist = []
|
||||
for i in joblist.split():
|
||||
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():
|
||||
|
|
Loading…
Reference in New Issue