Skip to content

Commit

Permalink
githubplugin: final changes for v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Morg42 committed Nov 18, 2024
1 parent 33da94b commit c529c7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions githubplugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ def create_repo(self, name, owner, plugin, branch=None, rename=False) -> bool:
if rename:
self.logger.debug(f'renaming old link priv_{name}')
if not self._move_old_link(name):
self.logger.warning(f'unable to move old link priv_{name}, installation needs to be repaired manually')
self.loggerr(f'unable to move old link priv_{name}, installation needs to be repaired manually')

self.logger.debug(f'creating link {repo["link"]} to {repo["rel_link_path"]}...')
try:
Expand All @@ -542,7 +542,7 @@ def _move_old_link(self, name) -> bool:
# try plugin.yaml
plgyml = os.path.join(link, 'plugin.yaml')
if not os.path.exists(plgyml):
self.logger.debug(f'plugin.yaml not found for {link}, aborting')
self.loggerr(f'plugin.yaml not found for {link}, aborting')
return False

try:
Expand Down

0 comments on commit c529c7d

Please sign in to comment.