summaryrefslogtreecommitdiff
path: root/src/Propellor
diff options
context:
space:
mode:
authorJoey Hess2018-08-19 23:20:49 -0400
committerJoey Hess2018-08-19 23:20:49 -0400
commit2b5fff55e69d1c73d1b4445a8192a4c24896e831 (patch)
tree300fe990457534b3f5ed294c8e0046f8c84ada10 /src/Propellor
parent796488188b922aa071e8d5dcbda054e70f1bdad2 (diff)
one more fix
Diffstat (limited to 'src/Propellor')
-rw-r--r--src/Propellor/Property/Systemd.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Systemd.hs b/src/Propellor/Property/Systemd.hs
index 0d6dd097..cb63ff5a 100644
--- a/src/Propellor/Property/Systemd.hs
+++ b/src/Propellor/Property/Systemd.hs
@@ -473,4 +473,4 @@ escapePath = concatMap escape
escape '/' = "-"
escape c
| ((isAscii c && isAlphaNum c) || c == '_') = [c]
- | otherwise = '\\' : printf "%x" c
+ | otherwise = '\\' : 'x' : printf "%x" c