summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--DistUpgrade/DistUpgradeControler.py1
-rw-r--r--DistUpgrade/DistUpgradeViewGtk.py4
2 files changed, 5 insertions, 0 deletions
diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py
index d0fde352..9a03f288 100644
--- a/DistUpgrade/DistUpgradeControler.py
+++ b/DistUpgrade/DistUpgradeControler.py
@@ -113,6 +113,7 @@ class DistUpgradeControler(object):
if not foundToDist:
# FIXME: offer to write a new self.sources.list entry
+ # DONT'T ERROR, write a line with mirror here
logging.error("No valid entry found")
return self._view.error(_("No valid entry found"),
_("While scaning your repository "
diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py
index d8c55763..3236ba14 100644
--- a/DistUpgrade/DistUpgradeViewGtk.py
+++ b/DistUpgrade/DistUpgradeViewGtk.py
@@ -196,6 +196,10 @@ class GtkInstallProgressAdapter(InstallProgress):
def fork(self):
pid = self.term.forkpty(envv=self.env)
+ if pid == 0:
+ # HACK to work around bug in python/vte and unregister the logging
+ # atexit func in the child
+ sys.exitfunc = lambda: True
return pid
def statusChange(self, pkg, percent, status):