Tril
2013-Oct-08 04:13 UTC
[Pkg-xen-devel] Bug#603391: Bug#603391: Workaround PyGrub issue
I double-checked, I edited the file correctly. I don't know python much, but it seems the lower stack traces are deeper than the upper ones, which means somehow your calling "self.disk =" inside a set_disk method seems to have re-entered itself as if set_disk is a handler for self.disk =...
Ian Campbell
2013-Oct-08 07:13 UTC
[Pkg-xen-devel] Bug#603391: Bug#603391: Workaround PyGrub issue
On Mon, 2013-10-07 at 21:13 -0700, Tril wrote:> I double-checked, I edited the file correctly. > > I don't know python much, but it seems the lower stack traces are > deeper than the upper ones, which means somehow your calling > "self.disk =" inside a set_disk method seems to have re-entered itself > as if set_disk is a handler for self.disk =...It should be self._disk (note the underscore) which is used inside the function. Ian.