Show
Ignore:
Timestamp:
02/06/03 15:49:04 (21 years ago)
Author:
jalet
Message:

edpykota should be ok now

Files:
1 modified

Legend:

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

    r700 r720  
    1515# 
    1616# $Log$ 
     17# Revision 1.3  2003/02/06 14:49:04  jalet 
     18# edpykota should be ok now 
     19# 
    1720# Revision 1.2  2003/02/05 22:28:38  jalet 
    1821# More robust storage 
     
    6265    def doParseResult(self, result) : 
    6366        """Returns the result as a list of Python mappings.""" 
    64         if result.ntuples() > 0 : 
     67        if (result is not None) and (result.ntuples() > 0) : 
    6568            return result.dictresult() 
    6669