Skip to content
Snippets Groups Projects
Commit a2407b37b97d authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:ambulance: docker_dev_start: correctly set password and option in two different arguments

parent b9fd986f601c
No related branches found
No related tags found
1 merge request!105🚑 docker_dev_start: correctly set password and option in two different arguments
This commit is part of merge request !105. Comments created here will be created in the context of that merge request.
......@@ -39,5 +39,5 @@
_logger = logging.getLogger(__name__)
__version__ = "3.3.0"
__version__ = "3.3.1"
__date__ = "2017-08-11"
......@@ -43,5 +43,5 @@
__date__ = "2017-08-11"
__updated__ = "2022-01-27"
__updated__ = "2022-04-04"
def main(argv=None): # IGNORE:C0111
......@@ -382,7 +382,8 @@
else ("coverage-start" if coverage else "start")
]
if db_password:
arg.append("--db_password %s" % db_password)
arg.append("--db_password")
arg.append(db_password)
if nmspc.update:
arg.extend(("-u", nmspc.update))
arg.append("--i18n-overwrite")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment