You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2022/07/13 12:11:35 UTC

[lucene-jira-archive] branch main updated: woops, remove leftover print

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

mikemccand pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene-jira-archive.git


The following commit(s) were added to refs/heads/main by this push:
     new 0d79dbc7 woops, remove leftover print
0d79dbc7 is described below

commit 0d79dbc754f121dd25ab50fdf88e9dfec79bcc30
Author: Mike McCandless <mi...@apache.org>
AuthorDate: Wed Jul 13 08:11:28 2022 -0400

    woops, remove leftover print
---
 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 233ccd15..431e6e35 100644
--- a/migration/src/jira2github_import.py
+++ b/migration/src/jira2github_import.py
@@ -73,7 +73,6 @@ def convert_issue(num: int, dump_dir: Path, output_dir: Path, account_map: dict[
         for (filename, cnt) in attachments:
             attachment_list_items.append(f"[{filename}]({attachment_url(num, filename, att_repo, att_branch)})" + (f" (versions: {cnt})" if cnt > 1 else ""))
             att_replace_map[filename] = attachment_url(num, filename, att_repo, att_branch)
-            print(f'{jira_id}: attachments: {attachment_list_items}')
 
         # embed github issue number next to linked issue keys
         linked_issues_list_items = []