On Jan 16, 1:47 am, gert <gert.cuyk...@gmail.com> wrote:
> except sqlite3.Error as e:
>     ERROR = "Error " + ...
>
> how does except work in python3 ?

except sqlite3.Error as e:
   ERROR = "Error " + e.args[0]

oops i thought it did not work somehow in 3.0 but it does :)
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to