Commit bc49ce61 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

restore python3 compatibility

parent 72cd13aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -251,6 +251,6 @@ if addflag:
    error()

  # 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)
  if verboseflag: print (txt.decode("UTF-8"))