summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-03-30 16:11:04 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-03-30 16:11:04 +0200
commitf6444644dc9601b4cbfdf2b621c77741a367b778 (patch)
treec951e3046111255d9ea77bb43319bae959d14f72
parentc4020d3179f287120da0c566cbae3a6034946637 (diff)
downloadpython-apt-f6444644dc9601b4cbfdf2b621c77741a367b778.tar.gz
* DumbTerminal.run() -> DumbTerminal.call()
-rw-r--r--DistUpgrade/DistUpgradeView.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/DistUpgrade/DistUpgradeView.py b/DistUpgrade/DistUpgradeView.py
index 02894939..14ac5208 100644
--- a/DistUpgrade/DistUpgradeView.py
+++ b/DistUpgrade/DistUpgradeView.py
@@ -20,7 +20,7 @@
# USA
class DumbTerminal(object):
- def run(self, cmd):
+ def call(self, cmd):
" expects a command in the subprocess style (as a list) "
subprocess.call(cmd)