sql: fix ordering of tracking code tables (#6597)

This commit is contained in:
Frédéric Péters 2015-03-02 13:55:37 +01:00
parent c692073d48
commit 2533c51a34
1 changed files with 1 additions and 1 deletions

View File

@ -1334,7 +1334,7 @@ class TrackingCode(SqlMixin, wcs.tracking_code.TrackingCode):
def _row2ob(cls, row):
o = cls()
(o.id, o.formdata_id, o.formdef_id) = tuple(row[:3])
(o.id, o.formdef_id, o.formdata_id) = tuple(row[:3])
return o
_row2ob = classmethod(_row2ob)