aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Casagrande <milo@ubuntu.com>2013-05-23 17:53:57 +0200
committerMilo Casagrande <milo@ubuntu.com>2013-05-23 17:53:57 +0200
commit21bc5006cd2f649312755e9d23abb5aef377f6a3 (patch)
treeddc3448a3e8e17a84d8eb0e48da383b1f6ab39c0
parent2211ce4e88ee309a9d1fa90be3ef093404d6c265 (diff)
Renamed template file, should be a Python file.
-rw-r--r--rhodecode/config/post_update_tmpl.py (renamed from rhodecode/config/post_update_tmpl.sh)0
-rw-r--r--rhodecode/model/scm.py2
2 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/config/post_update_tmpl.sh b/rhodecode/config/post_update_tmpl.py
index 29e7beb3..29e7beb3 100644
--- a/rhodecode/config/post_update_tmpl.sh
+++ b/rhodecode/config/post_update_tmpl.py
diff --git a/rhodecode/model/scm.py b/rhodecode/model/scm.py
index 85896338..9292bf8a 100644
--- a/rhodecode/model/scm.py
+++ b/rhodecode/model/scm.py
@@ -592,7 +592,7 @@ class ScmModel(BaseModel):
# We also need the file to be executable by the group (0775), since we
# grant permission to push based on the group too.
tmpl_post_update = pkg_resources.resource_string(
- 'rhodecode', jn('config', 'post_update_tmpl.sh')
+ 'rhodecode', jn('config', 'post_update_tmpl.py')
)
for h_type, tmpl in [('post', tmpl_post_update)]: