We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37eedcc commit cc58561Copy full SHA for cc58561
specfile/specfile.py
@@ -616,7 +616,8 @@ def add_changelog_entry(
616
evr = f"{tags.epoch.expanded_value}:"
617
except AttributeError:
618
evr = ""
619
- evr += f"{tags.version.expanded_value}-{tags.release.expanded_value}"
+ evr += f"{tags.version.expanded_value}-"
620
+ evr += self.expand(tags.release.value, extra_macros=[("dist", "")])
621
with self.changelog(section) as changelog:
622
if changelog is None:
623
return
0 commit comments