summaryrefslogtreecommitdiffstats
path: root/roles/lib_dyn
diff options
context:
space:
mode:
authorRussell Harrison <rharriso@redhat.com>2016-01-29 14:54:26 -0500
committerRussell Harrison <rharriso@redhat.com>2016-01-29 14:54:26 -0500
commitd11b162f2430c63c8074f938c73c97de15fe838a (patch)
tree508cd19c41569bd5290a55d517bed319c5c29862 /roles/lib_dyn
parent9200259613071c06c610ee38e6dfa4e97c1b4d38 (diff)
downloadopenshift-d11b162f2430c63c8074f938c73c97de15fe838a.tar.gz
openshift-d11b162f2430c63c8074f938c73c97de15fe838a.tar.bz2
openshift-d11b162f2430c63c8074f938c73c97de15fe838a.tar.xz
openshift-d11b162f2430c63c8074f938c73c97de15fe838a.zip
Fixing last pylint error
Diffstat (limited to 'roles/lib_dyn')
-rw-r--r--roles/lib_dyn/library/dyn_record.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/roles/lib_dyn/library/dyn_record.py b/roles/lib_dyn/library/dyn_record.py
index ec51e9cf1..da9909ee2 100644
--- a/roles/lib_dyn/library/dyn_record.py
+++ b/roles/lib_dyn/library/dyn_record.py
@@ -182,6 +182,9 @@ def main():
# Start the Dyn session
try:
+ # dyn_session is needed to access the other objects but rarely gets
+ # used on its own.
+ #pylint: disable=unused-variable
dyn_session = DynectSession(module.params['customer_name'],
module.params['user_name'],
module.params['user_password'])