ordinals in format for sake of py2.6

This commit is contained in:
Matthew Perry
2014-07-20 13:54:02 -07:00
parent 3384c82f80
commit 6e4ea093e5
+1 -1
View File
@@ -11,7 +11,7 @@ def _uniquify(columns):
newcol = col
while newcol in ucols:
inc += 1
newcol = "{}_{}".format(col, inc)
newcol = "{0}_{1}".format(col, inc)
ucols.append(newcol)
return ucols