You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by to...@apache.org on 2022/07/17 10:06:33 UTC

[lucene-jira-archive] branch refine-subtask-link updated: remove commented line

This is an automated email from the ASF dual-hosted git repository.

tomoko pushed a commit to branch refine-subtask-link
in repository https://gitbox.apache.org/repos/asf/lucene-jira-archive.git


The following commit(s) were added to refs/heads/refine-subtask-link by this push:
     new 58a4a73a remove commented line
58a4a73a is described below

commit 58a4a73a75f3fde31e42e0a3ec4cdeafcb209969
Author: Tomoko Uchida <to...@gmail.com>
AuthorDate: Sun Jul 17 19:06:17 2022 +0900

    remove commented line
---
 migration/src/jira2github_import.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/migration/src/jira2github_import.py b/migration/src/jira2github_import.py
index 156b8c11..60cab8b5 100644
--- a/migration/src/jira2github_import.py
+++ b/migration/src/jira2github_import.py
@@ -76,7 +76,6 @@ def convert_issue(num: int, dump_dir: Path, output_dir: Path, account_map: dict[
         # embed github issue number next to sub task keys
         subtasks_list_items = []
         for jira_key in subtasks:
-            # subtasks_list_items.append(f"{jira_key} : [Jira link]({jira_issue_url(jira_key)})")
             subtasks_list_items.append(f"[{jira_key}]({jira_issue_url(jira_key)})")
 
         created_datetime = dateutil.parser.parse(created)