Skip to content

Commit 016db1f

Browse files
author
Daniel Abercrombie
committed
Filter out T0_CH_CERN
1 parent 97d869b commit 016db1f

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

workflowwebtools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
:author: Daniel Abercrombie <dabercro@mit.edu>
55
"""
66

7-
__version__ = '0.7.1'
7+
__version__ = '0.7.2'
88

99
__all__ = []

workflowwebtools/workflowinfo.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,8 @@ def site_to_run(self, task):
385385
for site in site_set:
386386
clean_site = re.sub(r'_(ECHO_)?(Disk|MSS)$', '', site)
387387
if clean_site not in out_list and clean_site and \
388-
clean_site in all_site_list:
388+
clean_site in all_site_list and \
389+
'T0_' not in clean_site:
389390
out_list.append(clean_site)
390391

391392
out_list.sort()

0 commit comments

Comments
 (0)