Repository: incubator-ranger Updated Branches: refs/heads/master e57a5480d -> 36a6b961d
RANGER-439 : Fix usersync installation failure Signed-off-by: Velmurugan Periasamy <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-ranger/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ranger/commit/36a6b961 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ranger/tree/36a6b961 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ranger/diff/36a6b961 Branch: refs/heads/master Commit: 36a6b961d9ceb066ba67a193404bd402fe102110 Parents: e57a548 Author: Gautam Borad <[email protected]> Authored: Thu Apr 30 20:12:40 2015 +0530 Committer: Velmurugan Periasamy <[email protected]> Committed: Thu Apr 30 11:03:39 2015 -0400 ---------------------------------------------------------------------- unixauthservice/scripts/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/36a6b961/unixauthservice/scripts/setup.py ---------------------------------------------------------------------- diff --git a/unixauthservice/scripts/setup.py b/unixauthservice/scripts/setup.py index 9a9e525..0094e32 100755 --- a/unixauthservice/scripts/setup.py +++ b/unixauthservice/scripts/setup.py @@ -144,7 +144,7 @@ def writeXMLUsingProperties(xmlTemplateFileName,prop,xmlOutputFileName): for config in root.findall('property'): name = config.find('name').text if (name in prop.keys()): - config.find('value').text = prop[name] + config.find('value').text = str(prop[name]) #else: # print "ERROR: key not found: %s" % (name) if isfile(xmlOutputFileName):
