Project

General

Profile

« Previous | Next » 

Revision 2654

sql.py: into_table_name(): Fixed bug where key needed to be passed through str() now that ColDict uses Col objects for everything

View differences:

sql.py
911 911
        
912 912
        try: value_in_col = mapping['value']
913 913
        except KeyError:
914
            str_ += ', '.join((k+'='+in_col_str(v)
914
            str_ += ', '.join((str(k)+'='+in_col_str(v)
915 915
                for k, v in mapping.iteritems()))
916 916
        else: str_ += in_col_str(value_in_col)
917 917
        

Also available in: Unified diff