Skip to content

Commit

Permalink
get it to work for people other than me
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-sanders committed Sep 28, 2023
1 parent 7b47c64 commit cb2ac47
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cylc/flow/tui/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
gather,
)
from copy import deepcopy
from getpass import getuser
from multiprocessing import Queue
from time import time

Expand Down Expand Up @@ -57,6 +58,9 @@
)


ME = getuser()


def get_default_filters():
"""Return default task/workflow filters.
Expand Down Expand Up @@ -301,7 +305,7 @@ async def _scan(self):
# this workflow is filtered out
continue
data['workflows'].append({
'id': f'~osanders/{workflow["name"]}',
'id': f'~{ME}/{workflow["name"]}',
'name': workflow['name'],
'status': status,
'stateTotals': {},
Expand Down

0 comments on commit cb2ac47

Please sign in to comment.