Skip to content

Commit 65b7adb

Browse files
committed
Pass kwargs correctly.
1 parent 3a7e244 commit 65b7adb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

virl/cli/up/commands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def up(repo=None, provision=False, start=True, **kwargs):
184184
rc = call(cmd)
185185
if rc == 0:
186186
cmd = [get_command(), "up"]
187-
cmd = _build_command(cmd, provision, start, kwargs)
187+
cmd = _build_command(cmd, provision, start, **kwargs)
188188

189189
exit(call(cmd))
190190

0 commit comments

Comments
 (0)