summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2010-09-06 17:16:41 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2010-09-06 17:16:41 +0200
commit9db89dab613718eabd50f54540111093141060c1 (patch)
treed9f4b0c088707326c3a5548c616839707e374c0c
parent9e5d14fd6fe250f1239928e51fe5430b14c9bc9b (diff)
downloadportato-9db89dab613718eabd50f54540111093141060c1.tar.gz
portato-9db89dab613718eabd50f54540111093141060c1.tar.bz2
portato-9db89dab613718eabd50f54540111093141060c1.zip
Handle portage-2.1.8 and above as portage-2.2
-rw-r--r--portato/backend/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/backend/portage/__init__.py b/portato/backend/portage/__init__.py
index 5bd324f..11bdd89 100644
--- a/portato/backend/portage/__init__.py
+++ b/portato/backend/portage/__init__.py
@@ -17,7 +17,7 @@ from portage import VERSION as PV
VERSION = tuple(map(int, (x.split("_")[0] for x in PV.split("."))))
-if VERSION >= (2, 2) or VERSION >= (2, 1, 9):
+if VERSION >= (2, 2) or VERSION >= (2, 1, 8):
debug("Using portage-2.2")
from .system_22 import PortageSystem_22 as PortageSystem
from .package_22 import PortagePackage_22 as PortagePackage