Show
Ignore:
Timestamp:
04/19/10 13:28:06 (14 years ago)
Author:
jerome
Message:

Fixes #61. References #56, #60.

Files:
1 modified

Legend:

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

    r3531 r3533  
    127127        if result : 
    128128            entries = [tuple([f[0] for f in self.cursor.description])] 
    129             for entry in result : 
    130                 row = [] 
    131                 for value in entry : 
    132                     try : 
    133                         value = value.encode("UTF-8") 
    134                     except : 
    135                         pass 
    136                     row.append(value) 
    137                 entries.append(tuple(row)) 
     129            entries.extend(result) 
    138130            return entries 
    139131