Skip to content

Commit

Permalink
Remove unnecessary indent (ansible#67728)
Browse files Browse the repository at this point in the history
total_size fact is populated if schema is not specified in
postgresql_user_obj_stat_info module.

Signed-off-by: Abhijeet Kasurde <[email protected]>
  • Loading branch information
Akasurde authored Feb 25, 2020
1 parent 4e57124 commit 6f0924a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def __fill_out_info(self, result, info_key=None, schema_key=None, name_key=None)
query_params=(relname,),
add_to_executed=False)

self.info[info_key][elem[schema_key]][elem[name_key]]['total_size'] = result[0][0]
self.info[info_key][elem[schema_key]][elem[name_key]]['total_size'] = result[0][0]

def set_schema(self, schema):
"""If schema exists, sets self.schema, otherwise fails."""
Expand Down

0 comments on commit 6f0924a

Please sign in to comment.