Skip to content
Snippets Groups Projects
Commit fb0f9b61 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Task #8887: extra line between sections

parent afe3c509
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,7 @@ def makePostgresNotificationQueries(schema, table, action, view_for_row=None, vi
table=table)
sql = drop_sql + '\n' + function_sql + '\n' + trigger_sql
sql_lines = '\n'.join([s.strip() for s in sql.split('\n')])
sql_lines = '\n'.join([s.strip() for s in sql.split('\n')]) + '\n'
return sql_lines
class PostgresListener(object):
......
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