Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/plugins/fedora.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-30 15:18:38 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-30 15:18:38 (GMT)
commit4f98fe10ea482fad3fffe9d655d26139dea30965 (patch)
tree4a780e780e20177e17a7c2f97477ed578f7af49b /devbot/plugins/fedora.py
parentf87c98e40b1ae61b889abe06db944b88433c0ada (diff)
Add more tests and fix bugs
Diffstat (limited to 'devbot/plugins/fedora.py')
-rw-r--r--devbot/plugins/fedora.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/devbot/plugins/fedora.py b/devbot/plugins/fedora.py
index ebfc91a..27f1d17 100644
--- a/devbot/plugins/fedora.py
+++ b/devbot/plugins/fedora.py
@@ -96,11 +96,11 @@ class DistroInfo(interfaces.DistroInfo):
self.supported = (arch in ["i386", "i686", "x86_64"])
try:
- release = open(_FEDORA_RELEASE_PATH).read().strip()
+ release = open(self._FEDORA_RELEASE_PATH).read().strip()
except IOError:
release = None
self.valid = False
-
+
if release == "Fedora release 17 (Beefy Miracle)":
self.version = "17"
self.gnome_version = "3.4"