From ef4848aa9ff9d04eed94521cba7ae8a7a60f12ef Mon Sep 17 00:00:00 2001 From: Bastian Eicher Date: Wed, 29 Jul 2015 12:50:13 +0200 Subject: [PATCH] support.publish(): Use --key="value" arguments instead of --key value This avoids issues with empty argument values on Windows. --- support.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support.py b/support.py index 57c87ca..3cd6d9f 100644 --- a/support.py +++ b/support.py @@ -54,7 +54,7 @@ def publish(feed_path, **kwargs): if value is True: args += ['--' + k.replace('_', '-')] elif value is not None: - args += ['--' + k.replace('_', '-'), value] + args += ['--' + k.replace('_', '-') + "='" + value + "'"] args.append(feed_path) info("Executing %s", args) check_call(args) -- 2.11.4.GIT