summaryrefslogtreecommitdiff
path: root/DistUpgrade
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-02-04 12:04:00 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2006-02-04 12:04:00 +0000
commit694ea8be861e66124617709eba63408da07e10c5 (patch)
tree5be6881a0113836811dd002054b81b0e4268a9d1 /DistUpgrade
parent0900e0b357b949f3d87c7a885b4c27e92c2f1d3d (diff)
downloadpython-apt-694ea8be861e66124617709eba63408da07e10c5.tar.gz
* make the sleep in non-interactive view way shorter
Diffstat (limited to 'DistUpgrade')
-rw-r--r--DistUpgrade/DistUpgradeViewNonInteractive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/DistUpgrade/DistUpgradeViewNonInteractive.py b/DistUpgrade/DistUpgradeViewNonInteractive.py
index beb843d2..f6845a49 100644
--- a/DistUpgrade/DistUpgradeViewNonInteractive.py
+++ b/DistUpgrade/DistUpgradeViewNonInteractive.py
@@ -30,7 +30,7 @@ class NonInteractiveInstallProgress(apt.progress.InstallProgress):
def conffile(self, current, new):
logging.debug("got a conffile-prompt from dpkg for file: '%s'" % current)
def updateInterface(self):
- time.sleep(0.1)
+ time.sleep(0.001)
class NonInteractiveDistUpgradeView(DistUpgradeView):
" non-interactive version of the upgrade view "