Skip to content

Commit

Permalink
Spelling correction
Browse files Browse the repository at this point in the history
  • Loading branch information
vernondcole committed Jun 5, 2010
1 parent 0e0d98f commit d20d45f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adodbapi/adodbapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ def _makeDescriptionFromRS(self,recordset):
else:
display_size=None
null_ok= bool(f.Attributes & adc.adFldMayBeNull) #v2.1 Cole
desc.append((f.Name, f.Type, display_size, f.Definedsize, f.Precision, f.NumericScale, null_ok))
desc.append((f.Name, f.Type, display_size, f.DefinedSize, f.Precision, f.NumericScale, null_ok))
self.description = desc

def close(self):
Expand Down

0 comments on commit d20d45f

Please sign in to comment.