Skip to content

Commit 3a044ef

Browse files
authored
Merge pull request #186 from netsandbox/distribution-typo
fix distribution modules entity_plural typo
2 parents 7790788 + 4c2860e commit 3a044ef

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

plugins/modules/ansible_distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def main():
109109
with PulpEntityAnsibleModule(
110110
context_class=PulpAnsibleDistributionContext,
111111
entity_singular="distribution",
112-
entity_plural="distribuions",
112+
entity_plural="distributions",
113113
import_errors=[("pulp-glue", PULP_CLI_IMPORT_ERR)],
114114
argument_spec={
115115
"name": {},

plugins/modules/container_distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def main():
114114
with PulpEntityAnsibleModule(
115115
context_class=PulpContainerDistributionContext,
116116
entity_singular="distribution",
117-
entity_plural="distribuions",
117+
entity_plural="distributions",
118118
import_errors=[("pulp-glue", PULP_CLI_IMPORT_ERR)],
119119
argument_spec={
120120
"name": {},

plugins/modules/file_distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def main():
100100
with PulpEntityAnsibleModule(
101101
context_class=PulpFileDistributionContext,
102102
entity_singular="distribution",
103-
entity_plural="distribuions",
103+
entity_plural="distributions",
104104
import_errors=[("pulp-glue", PULP_CLI_IMPORT_ERR)],
105105
argument_spec={
106106
"name": {},

plugins/modules/rpm_distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def main():
129129
with PulpEntityAnsibleModule(
130130
context_class=PulpRpmDistributionContext,
131131
entity_singular="distribution",
132-
entity_plural="distribuions",
132+
entity_plural="distributions",
133133
import_errors=[("pulp-glue", PULP_CLI_IMPORT_ERR)],
134134
argument_spec={
135135
"name": {},

0 commit comments

Comments
 (0)