summaryrefslogtreecommitdiff
path: root/DistUpgrade
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-09-13 14:56:29 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-09-13 14:56:29 +0200
commit77bd6849a9bcd0855b47244558f1df7bc64da197 (patch)
tree1eab945927039daa2cc893fbb3210a1aa39862cb /DistUpgrade
parent3cb8e9aab902baaf454edd0020318d15f028682e (diff)
downloadpython-apt-77bd6849a9bcd0855b47244558f1df7bc64da197.tar.gz
* DistUpgrade/DistUpgradeView.py:
- import subprocess
Diffstat (limited to 'DistUpgrade')
-rw-r--r--DistUpgrade/DistUpgradeView.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/DistUpgrade/DistUpgradeView.py b/DistUpgrade/DistUpgradeView.py
index d5b430b8..a9cd16d7 100644
--- a/DistUpgrade/DistUpgradeView.py
+++ b/DistUpgrade/DistUpgradeView.py
@@ -43,6 +43,7 @@ def estimatedDownloadTime(requiredDownload):
class DumbTerminal(object):
def call(self, cmd):
" expects a command in the subprocess style (as a list) "
+ import subprocess
subprocess.call(cmd)