diff options
Diffstat (limited to 'UpdateManager/UpdateManager.py')
| -rw-r--r-- | UpdateManager/UpdateManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index d1fd0086..1a62b255 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -668,8 +668,7 @@ class UpdateManager(SimpleGladeApp): uri = self.new_dist.upgradeTool print "Downloading %s to %s" % (uri, tmpdir) af = apt_pkg.GetPkgAcqFile(fetcher,uri, - descr=_("Upgrade tool"), - destDir=tmpdir) + descr=_("Upgrade tool")) fetcher.Run() print "Done downloading" @@ -689,6 +688,7 @@ class UpdateManager(SimpleGladeApp): print "no script file found in extracted tarbal" else: print "runing: %s" % script + os.execv(script,"") # cleanup os.chdir("..") |
