This commit is contained in:
ed 2021-08-16 08:40:26 +02:00
parent 68289cfa54
commit 5f42237f2c
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,6 @@
# coding: utf-8
VERSION = (0, 13, 4)
VERSION = (0, 13, 5)
CODENAME = "future-proof"
BUILD_DT = (2021, 8, 16)

View file

@ -1223,7 +1223,8 @@ class Up2k(object):
self._new_upload(job)
purl = "/{}/".format("{}/{}".format(job["vtop"], job["prel"]).strip("/"))
purl = "{}/{}".format(job["vtop"], job["prel"]).strip("/")
purl = "/{}/".format(purl) if purl else "/"
return {
"name": job["name"],