diff options
author | Daniil Baturin <daniil@baturin.org> | 2024-10-14 09:02:58 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2024-10-14 09:02:58 +0100 |
commit | e7368f8752f222ab8fd10a641351e9145a2f8f64 (patch) | |
tree | d2d0f864450c2671c31811cf8d961a715f0db699 /phabricator_tasks/tasks.py | |
parent | bb4203d7c2f93a612cbad2e67c0f7d4c20d19f14 (diff) | |
download | vyos-infrastructure-e7368f8752f222ab8fd10a641351e9145a2f8f64.tar.gz vyos-infrastructure-e7368f8752f222ab8fd10a641351e9145a2f8f64.zip |
Fix quotes in the Phorge task script
Diffstat (limited to 'phabricator_tasks/tasks.py')
-rw-r--r-- | phabricator_tasks/tasks.py | 6 |
1 files changed, 3 insertions, 3 deletions
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: |