diff options
Diffstat (limited to 'geo-replication/syncdaemon/configinterface.py')
-rw-r--r-- | geo-replication/syncdaemon/configinterface.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/geo-replication/syncdaemon/configinterface.py b/geo-replication/syncdaemon/configinterface.py index 95c153ec7e2..a59dee7a4a6 100644 --- a/geo-replication/syncdaemon/configinterface.py +++ b/geo-replication/syncdaemon/configinterface.py @@ -340,7 +340,7 @@ class GConffile(object): # Template expects String to be passed # if any config value is not string then it # fails with ValueError - v = u"{0}".format(v) + v = "{0}".format(v) if k == '__name__': continue |