From e7368f8752f222ab8fd10a641351e9145a2f8f64 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Mon, 14 Oct 2024 09:02:58 +0100 Subject: Fix quotes in the Phorge task script --- phabricator_tasks/tasks.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'phabricator_tasks/tasks.py') diff --git a/phabricator_tasks/tasks.py b/phabricator_tasks/tasks.py index b0524dc..254a8e4 100644 --- a/phabricator_tasks/tasks.py +++ b/phabricator_tasks/tasks.py @@ -68,7 +68,7 @@ for task in tasks: # Tag tasks "Bug" for ease of searching if task['issue_type'] in ['bug', 'vulnerability']: - print(f"Categorizing task T{task["task_id"]} as bug based on its issue type") + print(f'Categorizing task T{task["task_id"]} as bug based on its issue type') if DRYRUN: pass else: @@ -77,7 +77,7 @@ for task in tasks: # Tag tasks "Uncategorized tasks" to draw maintainer attention to them # if "Issue type" is not specified if task['issue_type'] == 'unspecified': - print(f"Marking task T{task["task_id"]} uncategorized based on its issue type") + print(f'Marking task T{task["task_id"]} uncategorized based on its issue type') if DRYRUN: pass else: @@ -85,7 +85,7 @@ for task in tasks: # Tag tasks "Bug" for ease of searching if task['difficulty_level'] == 'easy': - print(f"Categorizing task T{task["task_id"]} as a beginner task based on its difficulty level") + print(f'Categorizing task T{task["task_id"]} as a beginner task based on its difficulty level') if DRYRUN: pass else: -- cgit v1.2.3