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 f51fa2b commit 6938bacCopy full SHA for 6938bac
specfile/specfile.py
@@ -615,8 +615,12 @@ def add_changelog_entry(
615
with self.changelog(section) as changelog:
616
if changelog is None:
617
return
618
- epoch_prefix = f"{self.expanded_epoch}:" if self.expanded_epoch else ""
619
- evr = f"{epoch_prefix}{self.expanded_version}-{self.expanded_release}"
+ epoch_prefix = (
+ f"{self.expanded_epoch}:" if self.expanded_epoch else ""
620
+ )
621
+ evr = (
622
+ f"{epoch_prefix}{self.expanded_version}-{self.expanded_release}"
623
624
if isinstance(entry, str):
625
entry = [entry]
626
if timestamp is None:
0 commit comments