# HG changeset patch # User Dimitri Papadopoulos # Date 1368537984 -7200 # Node ID 0a1bd0c590e2f8103a3a43abc500d6d822666478 # Parent b37ce419ce26adba027750b8045f156625683726 [dataimport] minor typo in error handling diff -r b37ce419ce26 -r 0a1bd0c590e2 dataimport.py --- a/dataimport.py Tue May 07 00:29:42 2013 +0200 +++ b/dataimport.py Tue May 14 15:26:24 2013 +0200 @@ -396,7 +396,7 @@ columns = list(data[0]) execmany_func(cu, statement, data, table, columns, encoding) except Exception: - print 'unable to copy data into table %s', table + print 'unable to copy data into table %s' % table # Error in import statement, save data in dump_output_dir if dump_output_dir is not None: pdata = {'data': data, 'statement': statement,