We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eae0a5 commit df8b2e5Copy full SHA for df8b2e5
1 file changed
obiba_opal/imports.py
@@ -178,19 +178,19 @@ def add(self, factory):
178
csv_factory = {}
179
180
if self.characterSet:
181
- csv_factory.characterSet = self.characterSet
+ csv_factory['characterSet'] = self.characterSet
182
183
if self.separator:
184
- csv_factory.separator = self.separator
+ csv_factory['separator'] = self.separator
185
186
if self.quote:
187
- csv_factory.quote = self.quote
+ csv_factory['quote'] = self.quote
188
189
if self.firstRow:
190
- csv_factory.firstRow = self.firstRow
+ csv_factory['firstRow'] = self.firstRow
191
192
if self.valueType:
193
- csv_factory.defaultValueType = self.valueType
+ csv_factory['defaultValueType'] = self.valueType
194
195
table = {
196
'data': self.path,
0 commit comments