Skip to content

Commit

Permalink
Fixing py3 error
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Dec 23, 2015
1 parent 0f892c6 commit a5c1358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panoramix/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ def fetch_metadata(self):
if not any_date_col and 'date' in datatype.lower():
any_date_col = col.name

quoted = unicode(
quoted = "{}".format(
column(dbcol.column_name).compile(dialect=db.engine.dialect))
if dbcol.sum:
metrics.append(M(
Expand Down

0 comments on commit a5c1358

Please sign in to comment.