Skip to content

Commit 259e160

Browse files
authored
Df module incorrectly refers to deprecated value self.env (#16)
Signed-off-by: Daniel Chaffelson <chaffelson@gmail.com>
1 parent a560141 commit 259e160

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/modules/df.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def process(self):
288288
# Environment does not have DF database entry, and probably doesn't exist
289289
if self.state in ['absent']:
290290
self.module.log(
291-
"Dataflow Service %s already disabled in CDP Environment %s" % (self.name, self.env))
291+
"Dataflow Service %s already disabled in CDP Environment" % self.name)
292292
elif self.state in ['present']:
293293
# create DF Service
294294
if not self.module.check_mode:

0 commit comments

Comments
 (0)