From 1e0a66266ba13ed3673fd99c99d98ff538ce53f8 Mon Sep 17 00:00:00 2001 From: titoko Date: Wed, 17 Jul 2013 17:42:22 +0200 Subject: [PATCH] bugfix --- yunohost_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yunohost_app.py b/yunohost_app.py index 5daadaec..2485b3f7 100644 --- a/yunohost_app.py +++ b/yunohost_app.py @@ -512,7 +512,7 @@ def app_install(app, domain, path='/', label=None, mode='private'): # Apache # ########## if lvl(manifest,'yunohost','webapp','custom_apache_conf'): - os.system('mv '+app_tmp_folder+'/'+manifest['yunohost']['webapp']['custom_apache_conf']+' '++a2_settings_path +'/'+ domain +'.d/'+ unique_app_id +'.app.conf') + os.system('mv '+app_tmp_folder+'/'+manifest['yunohost']['webapp']['custom_apache_conf']+' '+a2_settings_path +'/'+ domain +'.d/'+ unique_app_id +'.app.conf') else: a2_conf_lines = [ 'Alias '+ path +' '+ app_final_path + manifest['launch_path'] ] if path != '/':