Skip to content
This repository has been archived by the owner on Jan 28, 2021. It is now read-only.

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
vegitron committed Jun 19, 2015
1 parent 0c48b42 commit b7b2ff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlshare_rest/backend/mssql.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def _load_table_sql(self, table_name, row, user, row_count):
all_rows = map(lambda x: "(%s)" % ph_str, range(row_count))

return "INSERT INTO [%s].[%s] VALUES %s" % (user.schema, table_name,
", ".join(all_rows))
", ".join(all_rows))

def _load_table(self, table_name, data_handle, user):
connection = self.get_connection_for_user(user)
Expand Down

0 comments on commit b7b2ff1

Please sign in to comment.