diff --git a/src/core.py b/src/core.py index 0b1be402e..d49b5582a 100644 --- a/src/core.py +++ b/src/core.py @@ -707,7 +707,7 @@ of HD space! Oops!\nWe had to pause at least one torrent")) if self.config.get("max_active_torrents") == 0: try: self.config.set("max_active_torrents", \ - self.config.get("max_active_torrents_tmp") + self.config.get("max_active_torrents_tmp")) except: pass self.apply_prefs() diff --git a/src/tab_details.py b/src/tab_details.py index 03774b820..ff065378f 100644 --- a/src/tab_details.py +++ b/src/tab_details.py @@ -167,7 +167,7 @@ class DetailsTabManager(object): else: self.progress_bar.set_fraction(float(state['progress'])) self.progress_bar.set_text(common.fpcnt(state["progress"])) - + self.eta.set_text(common.estimate_eta(state)) self.share_ratio.set_text( '%.3f' % self.manager.calc_ratio(unique_id, state)) self.torrent_path.set_text(self.manager.get_torrent_path(unique_id))