Skip to content

Commit

Permalink
Issue #32: Switching to findall
Browse files Browse the repository at this point in the history
  • Loading branch information
jdewinne committed Jan 13, 2017
1 parent 00a8a04 commit 271f5cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ deploy:
provider: releases
api_key:
secure: aoVXZyLOBmB4Q2lLKLaqEN8zcqN3K3/3agRBA1znM1PLeqXSE3CwQe6sHkX6BrfMoDDtjqeepDMgJ9TsqJFq+lPY+HuVFzOqGlrWlIZHBUKI3hmfjgM/61CkdK2eBO42Ym4tqCQ4L1Tp42fcrB6M/a/0TGI5ENW2bJk8+ofRT8M=
file: build/libs/xlr-xldeploy-plugin-2.7.1.jar
file: build/libs/xlr-xldeploy-plugin-2.8.0.jar
skip_cleanup: true
on:
all_branches: true
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id "com.xebialabs.xl.docker" version "1.0.0"
}

version = "2.7.1"
version = "2.8.0"

apply plugin: 'java'
apply plugin: 'idea'
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/xldeploy/XLDeployClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def override_deployed_properties(deployment_xml, deployed_properties):
if deployed_properties:
deployeds_properties_dict = dict(ast.literal_eval(deployed_properties))
for key in deployeds_properties_dict:
pkey_xml = root.find(key)
pkey_xml = root.findall(key)
pkey_xml.text = deployeds_properties_dict[key]
return ET.tostring(root)

Expand Down

0 comments on commit 271f5cc

Please sign in to comment.