Skip to content

Commit

Permalink
Merge pull request #54 from rpetit3/rpetit3-patch-togglevisibility
Browse files Browse the repository at this point in the history
Patch - small fix on merge command and quay toggle visibility
  • Loading branch information
bgruening authored Jan 25, 2023
2 parents e914480 + d366a1f commit 73b91f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/bot/src/bioconda_bot/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ async def upload_image(session: ClientSession, zf: ZipFile, e: ZipInfo):
raise
await sleep(5)
if success:
await toggle_visibility(session, basename.split("%3A")[0])
await toggle_visibility(session, basename.split(":")[0] if ":" in basename else basename.split("%3A")[0])

log("cleaning up")
os.remove(newFName)
Expand Down

0 comments on commit 73b91f6

Please sign in to comment.