Skip to content

Commit

Permalink
Merge pull request #28 from NathanSparks/fix-flatten_data-bug
Browse files Browse the repository at this point in the history
model.py: Fix bug in gen_flatten_data()
  • Loading branch information
Dmitry Romanov authored Aug 5, 2016
2 parents 9dc200b + ee886bd commit 0a2f170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ccdb/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def gen_flatten_data(data):
"""
#python 3 hack to basestr
try:
unicode = unicode
u = unicode
except NameError:
# 'unicode' is undefined, must be Python 3
check_type = str
Expand Down

0 comments on commit 0a2f170

Please sign in to comment.