summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--database/postgresql/postgresql_user.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/database/postgresql/postgresql_user.py b/database/postgresql/postgresql_user.py
index 532e8645..1cdc92ef 100644
--- a/database/postgresql/postgresql_user.py
+++ b/database/postgresql/postgresql_user.py
@@ -682,4 +682,6 @@ def main():
# import module snippets
from ansible.module_utils.basic import *
from ansible.module_utils.database import *
-main()
+
+if __name__ == '__main__':
+ main()