On Fri, 04 Jan 2013 23:10:11 +0100 Christoph Zwerschke <[email protected]> wrote: > Yes, pgnotify seems to have disappeared from the web, but I found an > old copy of pgnotify somewhere in a dark corner. getnotify() is used > here like that: > > notice = self.pgconn.getnotify() > if notice is None: > pass > event, pid = notice > > You can fix it by changing the last line to event, pid = notice[:2]. > > Maybe we should add the functionality of pgnotify() to PyGreSQL?
That's a good idea and solves a minor external issue for me as well. I will look into this one while you focus on the update/insert issues. -- D'Arcy J.M. Cain PyGreSQL Development Group http://www.PyGreSQL.org IM:[email protected] _______________________________________________ PyGreSQL mailing list [email protected] https://mail.vex.net/mailman/listinfo.cgi/pygresql
