Skip to content

Commit

Permalink
Fix pep8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ckirby committed Oct 25, 2016
1 parent 06496d7 commit 8cdc934
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions postgres_copy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ def prep_copy(self):
'db_table': self.temp_table_name,
'extra_options': '',
'header_list': ", ".join([
'"%s"' % h for f, h in self.field_header_crosswalk
])
'"%s"' % h for f, h in self.field_header_crosswalk
])
}
if self.delimiter:
options['extra_options'] += " DELIMITER '%s'" % self.delimiter
Expand Down

0 comments on commit 8cdc934

Please sign in to comment.