From 3138af9c0028bb97c44fa1c98b805ad48ed6e2e4 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Thu, 6 Jul 2023 16:19:25 -0700 Subject: [PATCH] module shows incorrect dist tag --- pv2/importer/operation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pv2/importer/operation.py b/pv2/importer/operation.py index 9231840..ebf9ec1 100644 --- a/pv2/importer/operation.py +++ b/pv2/importer/operation.py @@ -524,7 +524,8 @@ class GitImport(Import): # dest_branch to be: {dest_branch}-stream-{stream_name} if "stream" in source_branch: dest_branch = self.__get_module_stream_branch_name(source_branch, dest_branch) - _dist_tag = f'.module+{_dist_tag}+1010+deadbeef' + distmarker = self.dist_tag.lstrip('.') + _dist_tag = f'.module+{distmarker}+1010+deadbeef' # Do SCL logic here.