Skip to content

Commit

Permalink
fix: typctl.py: fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pamburus committed May 7, 2024
1 parent 598b3be commit 51c7f40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/tapctl.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,9 +452,9 @@ def discover():
def sync(self, force=False):
'''Synchronize the formula with the latest release.'''
if not force and self.version == self.target_version:
logging.debug('%s: already up-to-date', HL(self))
logging.debug('%s: already up-to-date', self)
return
logging.info('Updating %s to version %s', HL(self), HL(self.version))
logging.info('Updating %s to version %s', self, HL(self.version))
release = self.repo.release(self.version).resolved
version = release.version
assets = self.assets(release.name)
Expand Down

0 comments on commit 51c7f40

Please sign in to comment.