Skip to content

Commit

Permalink
integers are not blobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin Metcalf committed May 3, 2013
1 parent 22b68b5 commit d39b42e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esri2open/utilities.py
Expand Up @@ -66,7 +66,7 @@ def getExt(fileName):
def parseFieldType(name, esriType):
if esriType.lower() in ("text","string","date"):
return name+" text"
elif esriType.lower() in ("short","long"):
elif esriType.lower() in ("short","long","integer"):
return name+" integer"
elif esriType.lower() in ("float","single","double"):
return name+" real"
Expand Down

0 comments on commit d39b42e

Please sign in to comment.