Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/distro.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-19 08:56:04 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-19 08:56:04 (GMT)
commit3164104316e412878f153fcdc5d76e9894e0afcf (patch)
tree8a54ac711944934bac12bf71005ecd082e66bbba /devbot/distro.py
parent45eb053f1088af5fc6883929498248608e118a53 (diff)
Respect the interactive flag for update
Diffstat (limited to 'devbot/distro.py')
-rw-r--r--devbot/distro.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/distro.py b/devbot/distro.py
index c432c08..89771f6 100644
--- a/devbot/distro.py
+++ b/devbot/distro.py
@@ -28,7 +28,7 @@ class FedoraPackageManager:
def update(self):
args = ["yum"]
- if self._interactive:
+ if not self._interactive:
args.append("-y")
args.append("update")