2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-10 09:02:10 +00:00

[Fix] Travis CI failure fixes

This commit is contained in:
shreyas 2016-07-29 11:54:46 +05:30
parent f9067f3d7a
commit 0c95b6a564

View File

@ -13,7 +13,7 @@ def make_nginx_conf(bench_path, yes=False):
sites = prepare_sites(config, bench_path)
bench_name = get_bench_name(bench_path)
bench_name_hash = hashlib.sha256('bench_name').hexdigest()[:16]
bench_name_hash = hashlib.sha256(bench_name).hexdigest()[:16]
nginx_conf = template.render(**{
"sites_path": sites_path,