diff options
| author | Sebastian Heinlein <sebi@sebi-pc> | 2006-10-09 16:30:22 +0200 |
|---|---|---|
| committer | Sebastian Heinlein <sebi@sebi-pc> | 2006-10-09 16:30:22 +0200 |
| commit | 71121af388843e45eb2b655b6d1bd94542503651 (patch) | |
| tree | 9481c824609dd6777dc3470c42c8e43c0b78d5ff /DistUpgrade/DistUpgradeView.py | |
| parent | 7afafc629b7c5b408972aafc46ef5d1887544aac (diff) | |
| parent | ff9de68c6430ff296e0781a8cee1122e89785db5 (diff) | |
| download | python-apt-71121af388843e45eb2b655b6d1bd94542503651.tar.gz | |
* merge with mvo
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 |
