Skip to content
Snippets Groups Projects
Unverified Commit 38a4bf80 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman Committed by GitHub
Browse files

Merge pull request #905 from t-woerner/ipaserver_ipareplica_module_log_isatty

ipaserver/ipareplica: Add isatty method to AnsibleModuleLog
parents 401d5d5a 7077776d
No related branches found
No related tags found
No related merge requests found
......@@ -222,6 +222,10 @@ else:
def info(self, msg):
self.module.debug(msg)
@staticmethod
def isatty():
return False
def write(self, msg):
self.module.debug(msg)
# self.module.warn(msg)
......
......@@ -255,6 +255,10 @@ else:
def info(self, msg):
self.module.debug(msg)
@staticmethod
def isatty():
return False
def write(self, msg):
self.module.debug(msg)
# self.module.warn(msg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment