From bc49ce611ae6db1978ae2ce12695277d2b0fba1a Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Mon, 9 Apr 2018 23:08:49 -0400 Subject: [PATCH] restore python3 compatibility --- lib/kim/Install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kim/Install.py b/lib/kim/Install.py index 0c9d717bc3..3f1d9fb191 100644 --- a/lib/kim/Install.py +++ b/lib/kim/Install.py @@ -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"))