summaryrefslogtreecommitdiff
path: root/cerbero
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2013-05-12 13:56:21 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2013-05-12 13:56:21 +0200
commit00f89d9f44720402f3fcdefeec56f1f0b5af496a (patch)
tree920e45d5a035757021646366c7b771185a01e048 /cerbero
parent2d82678771a5d137723e564d3eb88ad2875dc174 (diff)
config: And also escape the space
Diffstat (limited to 'cerbero')
-rw-r--r--cerbero/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/config.py b/cerbero/config.py
index bc19e54..e0d0336 100644
--- a/cerbero/config.py
+++ b/cerbero/config.py
@@ -44,7 +44,7 @@ def get_wix_prefix(arch):
if arch == Architecture.X86:
path = ''
else:
- path = ' \(x86\)'
+ path = '\ \(x86\)'
return DEFAULT_WIX_PREFIX % path