diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-10-04 21:26:42 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-10-04 21:26:42 +0200 |
| commit | 408753014a2ffe1c52a0941e9db10b912e69a6ab (patch) | |
| tree | 7262863471a44a36a8616658ca285d0b349be30a /DistUpgrade/DistUpgradeView.py | |
| parent | 3371259be1e936405b16bc447d6e90aab4809f81 (diff) | |
| download | python-apt-408753014a2ffe1c52a0941e9db10b912e69a6ab.tar.gz | |
* DistUpgrade/DistUpgradeView.py:
- show the dsl download time first and then the modem time
Diffstat (limited to 'DistUpgrade/DistUpgradeView.py')
| -rw-r--r-- | DistUpgrade/DistUpgradeView.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DistUpgrade/DistUpgradeView.py b/DistUpgrade/DistUpgradeView.py index a9cd16d7..40617774 100644 --- a/DistUpgrade/DistUpgradeView.py +++ b/DistUpgrade/DistUpgradeView.py @@ -35,8 +35,8 @@ def estimatedDownloadTime(requiredDownload): """ get the estimated download time """ timeModem = requiredDownload/(56*1024/8) # 56 kbit timeDSL = requiredDownload/(1024*1024/8) # 1Mbit = 1024 kbit - s= _("This download will take about %s with a 56k modem and about %s with " - "a 1Mbit DSL connection" % (FuzzyTimeToStr(timeModem), FuzzyTimeToStr(timeDSL))) + s= _("This download will take about %s with a 1Mbit DSL connection " + "and about %s with a 56k modem" % (FuzzyTimeToStr(timeDSL),FuzzyTimeToStr(timeModem))) return s |
