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/18 14:28:37 UTC

[lucene-jira-archive] branch refine-label-texts updated: fix typo

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

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


The following commit(s) were added to refs/heads/refine-label-texts by this push:
     new 46b2dfda fix typo
46b2dfda is described below

commit 46b2dfda10d2e92716745b1669da6067ecc62e15
Author: Tomoko Uchida <to...@gmail.com>
AuthorDate: Mon Jul 18 23:28:26 2022 +0900

    fix typo
---
 migration/src/jira2github_import.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/migration/src/jira2github_import.py b/migration/src/jira2github_import.py
index aedcc0d4..7edd88da 100644
--- a/migration/src/jira2github_import.py
+++ b/migration/src/jira2github_import.py
@@ -160,7 +160,7 @@ def convert_issue(num: int, dump_dir: Path, output_dir: Path, account_map: dict[
                 labels.append(f"fix-version:{v}")
         for v in versions:
             if v:
-                labels.append(f"affects-ersion:{v}")
+                labels.append(f"affects-version:{v}")
         for c in components:
             if c.startswith("core"):
                 labels.append(f"module:{c}")