Changeset 1275

Show
Ignore:
Timestamp:
01/12/04 15:44:47 (20 years ago)
Author:
jalet
Message:

Missing space in SQL query

Files:
1 modified

Legend:

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

    r1274 r1275  
    2222# 
    2323# $Log$ 
     24# Revision 1.33  2004/01/12 14:44:47  jalet 
     25# Missing space in SQL query 
     26# 
    2427# Revision 1.32  2004/01/12 14:35:02  jalet 
    2528# Printing history added to CGI script. 
     
    547550            where.append("jobdate<=%s" % self.doQuote(datelimit)) 
    548551        if where :     
    549             query += "WHERE %s" % " AND ".join(where) 
     552            query += " WHERE %s" % " AND ".join(where) 
    550553        query += " ORDER BY id DESC" 
    551554        if limit :