Skip to content

Commit

Permalink
Merge pull request #139 from gkiar/gk-dev
Browse files Browse the repository at this point in the history
fixing patch
  • Loading branch information
gkiar committed Sep 15, 2017
2 parents 410a9a3 + 7428919 commit e843900
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/python/boutiques/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def upgrade_04(self, input_file):
descriptor["container-image"]["image"] = img[1]
descriptor["container-image"]["index"] = img[0] + "://"
del descriptor["container-image"]["url"]
elif "docker" == descriptor["container-image"]["type"]:
elif "docker" == descriptor["container-image"]["type"] and descriptor["container-image"].get("index"):
url = descriptor["container-image"]["index"] = descriptor["container-image"]["index"].split("://")[1]

if "walltime-estimate" in descriptor.keys():
Expand Down
2 changes: 1 addition & 1 deletion tools/python/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

VERSION = "0.5.2"
VERSION = "0.5.2.1"
DEPS = [
"simplejson",
"jsonschema",
Expand Down

0 comments on commit e843900

Please sign in to comment.