From 1c5a19e245b01fa472fb3755b22826465fde917f Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 28 Nov 2018 23:10:33 -0500 Subject: [PATCH] Update path to friendica-to-smarty-tpl.py --- bin/dev/updatetpl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/dev/updatetpl.py b/bin/dev/updatetpl.py index 7b552fadd4..c58b9d62d9 100755 --- a/bin/dev/updatetpl.py +++ b/bin/dev/updatetpl.py @@ -58,7 +58,7 @@ fnull = open(os.devnull, "w") for tplpath in tplpaths: print "Converting " + path + tplpath - subprocess.call(['python', path + 'util/friendica-to-smarty-tpl.py', '-p', path + tplpath], stdout = fnull) + subprocess.call(['python', path + 'bin/dev/friendica-to-smarty-tpl.py', '-p', path + tplpath], stdout = fnull) fnull.close()