mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Forcing unicode creates issue with non-ascii strings or whatever..
This commit is contained in:
parent
26fcfed7fb
commit
4d734a27a0
1 changed files with 4 additions and 4 deletions
|
@ -550,7 +550,7 @@ def app_upgrade(app=[], url=None, file=None):
|
||||||
# Something wrong happened in Yunohost's code (most probably hook_exec)
|
# Something wrong happened in Yunohost's code (most probably hook_exec)
|
||||||
except Exception:
|
except Exception:
|
||||||
import traceback
|
import traceback
|
||||||
error = m18n.n('unexpected_error', error=u"\n" + traceback.format_exc())
|
error = m18n.n('unexpected_error', error="\n" + traceback.format_exc())
|
||||||
logger.error(m18n.n("app_install_failed", app=app_instance_name, error=error))
|
logger.error(m18n.n("app_install_failed", app=app_instance_name, error=error))
|
||||||
failure_message_with_debug_instructions = operation_logger.error(error)
|
failure_message_with_debug_instructions = operation_logger.error(error)
|
||||||
finally:
|
finally:
|
||||||
|
@ -805,7 +805,7 @@ def app_install(operation_logger, app, label=None, args=None, no_remove_on_failu
|
||||||
# Something wrong happened in Yunohost's code (most probably hook_exec)
|
# Something wrong happened in Yunohost's code (most probably hook_exec)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
import traceback
|
import traceback
|
||||||
error = m18n.n('unexpected_error', error=u"\n" + traceback.format_exc())
|
error = m18n.n('unexpected_error', error="\n" + traceback.format_exc())
|
||||||
logger.error(m18n.n("app_install_failed", app=app_id, error=error))
|
logger.error(m18n.n("app_install_failed", app=app_id, error=error))
|
||||||
failure_message_with_debug_instructions = operation_logger.error(error)
|
failure_message_with_debug_instructions = operation_logger.error(error)
|
||||||
finally:
|
finally:
|
||||||
|
@ -853,7 +853,7 @@ def app_install(operation_logger, app, label=None, args=None, no_remove_on_failu
|
||||||
except (KeyboardInterrupt, EOFError, Exception):
|
except (KeyboardInterrupt, EOFError, Exception):
|
||||||
remove_retcode = -1
|
remove_retcode = -1
|
||||||
import traceback
|
import traceback
|
||||||
logger.error(m18n.n('unexpected_error', error=u"\n" + traceback.format_exc()))
|
logger.error(m18n.n('unexpected_error', error="\n" + traceback.format_exc()))
|
||||||
|
|
||||||
# Remove all permission in LDAP
|
# Remove all permission in LDAP
|
||||||
for permission_name in user_permission_list()["permissions"].keys():
|
for permission_name in user_permission_list()["permissions"].keys():
|
||||||
|
@ -1042,7 +1042,7 @@ def app_remove(operation_logger, app):
|
||||||
except (KeyboardInterrupt, EOFError, Exception):
|
except (KeyboardInterrupt, EOFError, Exception):
|
||||||
ret = -1
|
ret = -1
|
||||||
import traceback
|
import traceback
|
||||||
logger.error(m18n.n('unexpected_error', error=u"\n" + traceback.format_exc()))
|
logger.error(m18n.n('unexpected_error', error="\n" + traceback.format_exc()))
|
||||||
|
|
||||||
if ret == 0:
|
if ret == 0:
|
||||||
logger.success(m18n.n('app_removed', app=app))
|
logger.success(m18n.n('app_removed', app=app))
|
||||||
|
|
Loading…
Add table
Reference in a new issue