diff -r 7012c889e8f2 -r b19360aa21e9 mercurial/bundlerepo.py --- a/mercurial/bundlerepo.py Mon Oct 16 18:01:25 2006 -0300 +++ b/mercurial/bundlerepo.py Mon Oct 16 20:38:04 2006 -0300 @@ -233,10 +233,12 @@ self.bundlefile.close() def __del__(self): - if not self.bundlefile.closed: - self.bundlefile.close() - if self.tempfile is not None: - os.unlink(self.tempfile) + bundlefile = getattr(self, 'bundlefile', None) + if bundlefile and not bundlefile.closed: + bundlefile.close() + tempfile = getattr(self, 'tempfile', None) + if tempfile is not None: + os.unlink(tempfile) def instance(ui, path, create): if create: