Changeset 1275
- Timestamp:
- 01/12/04 15:44:47 (21 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/storages/pgstorage.py
r1274 r1275 22 22 # 23 23 # $Log$ 24 # Revision 1.33 2004/01/12 14:44:47 jalet 25 # Missing space in SQL query 26 # 24 27 # Revision 1.32 2004/01/12 14:35:02 jalet 25 28 # Printing history added to CGI script. … … 547 550 where.append("jobdate<=%s" % self.doQuote(datelimit)) 548 551 if where : 549 query += " WHERE %s" % " AND ".join(where)552 query += " WHERE %s" % " AND ".join(where) 550 553 query += " ORDER BY id DESC" 551 554 if limit :