mirror of
https://gitlab.wikimedia.org/ladsgroup/Phabricator-maintenance-bot
synced 2024-11-09 13:42:38 +01:00
new_wikis_handler: Print only one Checking row
Plus prepend T to the task number to make it more obvious
This commit is contained in:
parent
82b90d32a9
commit
44cb589cfd
1 changed files with 1 additions and 2 deletions
|
@ -66,7 +66,7 @@ def hande_task(phid):
|
|||
global final_text
|
||||
final_text = ''
|
||||
task_details = client.taskDetails(phid)
|
||||
print('Checking', task_details['id'])
|
||||
print('Checking T%s' % task_details['id'])
|
||||
add_text('\n\n------\n**Pre-install automatic checklist:**')
|
||||
language_code = re.findall(r'\n- *?\*\*Language code:\*\* *?(\S+)', task_details['description'])
|
||||
if not language_code:
|
||||
|
@ -266,7 +266,6 @@ def hande_task(phid):
|
|||
def main():
|
||||
open_create_wikis_phid = 'PHID-PROJ-kmpu7gznmc2edea3qn2x'
|
||||
for phid in client.getTasksWithProject(open_create_wikis_phid, statuses=['open']):
|
||||
print('Checking', phid)
|
||||
hande_task(phid)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue