Merge "Strip not split the untrusted_wrapper" into feature/zuulv3
diff --git a/zuul/executor/server.py b/zuul/executor/server.py
index 9514454..eca5922 100644
--- a/zuul/executor/server.py
+++ b/zuul/executor/server.py
@@ -395,7 +395,7 @@
 
         if self.config.has_option('executor', 'untrusted_wrapper'):
             untrusted_wrapper_name = self.config.get(
-                'executor', 'untrusted_wrapper').split()
+                'executor', 'untrusted_wrapper').strip()
         else:
             untrusted_wrapper_name = 'bubblewrap'
         self.untrusted_wrapper = connections.drivers[untrusted_wrapper_name]