Skip to content

Commit

Permalink
[main]
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Nov 9, 2024
1 parent 4674b83 commit 0635ee9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion wodoo/lib_control_with_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ def do_kill(ctx, config, machines=[], brutal=False, profile="auto"):
safe_stop += [machine]

if safe_stop:
__dc(config, ["stop", "-t", "20"] + safe_stop, profile=profile) # persist data
__dc(
config, ["stop", "-t", "20"] + safe_stop, profile=profile
) # persist data
if config.devmode:
__dc(config, ["kill"] + list(machines), profile=profile)
else:
Expand Down
2 changes: 1 addition & 1 deletion wodoo/lib_robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def _run_test(
pwd = "1"

def params():
ODOO_VERSION = str(MANIFEST()["version"])
ODOO_VERSION = str(manifest["version"])
params = {
"url": "http://proxy",
"user": user,
Expand Down

0 comments on commit 0635ee9

Please sign in to comment.