Skip to content

Commit

Permalink
Merge branch 'release-1.1.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins-ctl committed May 30, 2016
2 parents 68ca930 + df62921 commit 80920fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

# define project level attributes:
name = 'clc-ansible-module'
version = '1.1.10'
version = '1.1.11'
summary = "Centurylink Cloud Ansible Modules"
description = "Ansible extension modules which allow users to interact with Centurylink Cloud to define and manage cloud components."
authors = [Author ("CenturyLink Cloud", "[email protected]")]
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.ctlts</groupId>
<artifactId>clc-ansible-module</artifactId>
<version>1.1.10</version>
<version>1.1.11</version>
<name>clc-ansible-module</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion src/main/python/clc_ansible_module/clc_network_fact.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def process_request(self):
else:
network = self.networks.Get(requested)
if network is None:
return self.module.fail_json(msg='Network: {0} does not exist'.format(search_key))
return self.module.fail_json(msg='Network: "{0}" does not exist'.format(requested))
self.module.exit_json(network=network.data)

def _get_clc_networks(self, location):
Expand Down

0 comments on commit 80920fd

Please sign in to comment.