From 53e5592f9a2d55434263f59a91c80fb46242307a Mon Sep 17 00:00:00 2001 From: Zach Prezkuta Date: Mon, 4 Feb 2013 22:55:15 -0700 Subject: [PATCH] move tpl scripts to util --- {mods => util}/friendica-to-smarty-tpl.py | 0 {mods => util}/updatetpl.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {mods => util}/friendica-to-smarty-tpl.py (100%) rename {mods => util}/updatetpl.py (95%) diff --git a/mods/friendica-to-smarty-tpl.py b/util/friendica-to-smarty-tpl.py similarity index 100% rename from mods/friendica-to-smarty-tpl.py rename to util/friendica-to-smarty-tpl.py diff --git a/mods/updatetpl.py b/util/updatetpl.py similarity index 95% rename from mods/updatetpl.py rename to util/updatetpl.py index aa815910c2..7b552fadd4 100755 --- a/mods/updatetpl.py +++ b/util/updatetpl.py @@ -58,7 +58,7 @@ fnull = open(os.devnull, "w") for tplpath in tplpaths: print "Converting " + path + tplpath - subprocess.call(['python', path + 'mods/friendica-to-smarty-tpl.py', '-p', path + tplpath], stdout = fnull) + subprocess.call(['python', path + 'util/friendica-to-smarty-tpl.py', '-p', path + tplpath], stdout = fnull) fnull.close()