Skip to content

Commit

Permalink
Merge branch '3.8-devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtechtrefny committed Aug 3, 2023
2 parents b9a1646 + ebc94a6 commit cac8f31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/makebumpver
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ class MakeBumpVer:
f.writelines(top)

f.write("%changelog\n")
today = datetime.date.today()
today = datetime.date.today() # pylint: disable=no-member
stamp = today.strftime("%a %b %d %Y")
f.write("* %s %s <%s> - %s-%s\n" % (stamp, self.gituser, self.gitemail,
newVersion, self.new_release))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class blivet_sdist(sdist):

def initialize_options(self):
sdist.initialize_options(self)
self.mode = None
self.mode = None # pylint: disable=attribute-defined-outside-init

def finalize_options(self):
sdist.finalize_options(self)
Expand Down

0 comments on commit cac8f31

Please sign in to comment.