From 58c22bbb007a8765f76ba3aaa1e0d867f7a68974 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 13 Oct 2014 16:17:43 -0600 Subject: [PATCH] Properly quote args that are strings Signed-off-by: Zack Cerza --- teuthology/orchestra/run.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/teuthology/orchestra/run.py b/teuthology/orchestra/run.py index ea41efda52..6c22d0bfb1 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. -- 2.39.5