summaryrefslogtreecommitdiffstats
path: root/xlators/features/marker/utils/syncdaemon/configinterface.py
diff options
context:
space:
mode:
authorCsaba Henk <csaba@gluster.com>2011-08-10 20:04:20 +0300
committerVijay Bellur <vijay@gluster.com>2011-09-12 06:20:42 -0700
commite139eeeb627368112aa1341d2f0ef6770dd7078e (patch)
tree6473a0e0f163b7e3e4057798864286f6f0c517d2 /xlators/features/marker/utils/syncdaemon/configinterface.py
parentf3081a22740c70485c50d3837fa93da5fd843f26 (diff)
gsyncd: python3 compat fixes
Also add __codecheck script which can verify if source is OK at the syntactical level with a given Python interpreter. Change-Id: Ieff34bcd3efd1cdc0e8f9a510c05488f35897bbe BUG: 1570 Reviewed-on: http://review.gluster.com/320 Reviewed-by: Kaushik BV <kaushikbv@gluster.com> Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'xlators/features/marker/utils/syncdaemon/configinterface.py')
-rw-r--r--xlators/features/marker/utils/syncdaemon/configinterface.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/features/marker/utils/syncdaemon/configinterface.py b/xlators/features/marker/utils/syncdaemon/configinterface.py
index fbf96c843..e55bec519 100644
--- a/xlators/features/marker/utils/syncdaemon/configinterface.py
+++ b/xlators/features/marker/utils/syncdaemon/configinterface.py
@@ -173,7 +173,7 @@ class GConffile(object):
opt = norm(opt)
v = d.get(opt)
if v:
- print v
+ print(v)
else:
for k, v in d.iteritems():
if k == '__name__':