1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fixed str formatting (#2139)

This commit is contained in:
Alexei Znamensky 2021-04-01 00:05:40 +13:00 committed by GitHub
parent 604a5dbf49
commit f1dbef4143
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- dimensiondata_network - bug when formatting message, instead of % a simple comma was used (https://github.com/ansible-collections/community.general/pull/2139).

View file

@ -260,7 +260,7 @@ class DimensionDataNetworkModule(DimensionDataModule):
) )
self.module.fail_json( self.module.fail_json(
"Unexpected failure deleting network with id %s", network.id "Unexpected failure deleting network with id %s" % network.id
) )
except DimensionDataAPIException as e: except DimensionDataAPIException as e: