Skip to content
Snippets Groups Projects
Commit bc49ce61 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

restore python3 compatibility

parent 72cd13aa
No related branches found
No related tags found
No related merge requests found
...@@ -251,6 +251,6 @@ if addflag: ...@@ -251,6 +251,6 @@ if addflag:
error() error()
# download single model # download single model
cmd = '%s/bin/kim-api-v1-collections-management install system %s' % (kimdir, addmodelname) cmd = '%s/bin/kim-api-v1-collections-management install system %s' % (kimdir.decode("UTF-8"), addmodelname)
txt = subprocess.check_output(cmd,stderr=subprocess.STDOUT,shell=True) txt = subprocess.check_output(cmd,stderr=subprocess.STDOUT,shell=True)
if verboseflag: print (txt.decode("UTF-8")) if verboseflag: print (txt.decode("UTF-8"))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment