Changeset 2596

Show
Ignore:
Timestamp:
11/29/05 14:16:59 (18 years ago)
Author:
jerome
Message:

Removed ambiguity in history retrieval.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storages/sql.py

    r2593 r2596  
    595595        if where :     
    596596            query += " AND %s" % " AND ".join(where) 
    597         query += " ORDER BY id DESC" 
     597        query += " ORDER BY jobhistory.id DESC" 
    598598        if limit : 
    599599            query += " LIMIT %s" % self.doQuote(int(limit))