From: Zack Cerza Date: Mon, 13 Oct 2014 22:17:43 +0000 (-0600) Subject: Properly quote args that are strings X-Git-Tag: 1.1.0~1124 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=58c22bbb007a8765f76ba3aaa1e0d867f7a68974;p=teuthology.git Properly quote args that are strings Signed-off-by: Zack Cerza --- diff --git a/teuthology/orchestra/run.py b/teuthology/orchestra/run.py index ea41efda5..6c22d0bfb 100644 --- a/teuthology/orchestra/run.py +++ b/teuthology/orchestra/run.py @@ -157,6 +157,9 @@ def quote(args): """ Internal quote wrapper. """ + if isinstance(args, basestring): + return args + def _quote(args): """ Handle quoted string, testing for raw charaters.