Skip to content

Commit

Permalink
string conversion for column names before normalizing
Browse files Browse the repository at this point in the history
  • Loading branch information
michellemho committed Sep 6, 2017
1 parent dd900d0 commit eb88554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cartoframes/utils.py
Expand Up @@ -57,7 +57,7 @@ def norm_colname(colname):
"""
last_char_special = False
char_list = []
for e in colname:
for e in str(colname):
if e.isalnum():
char_list.append(e.lower())
last_char_special = False
Expand Down

0 comments on commit eb88554

Please sign in to comment.