diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2010-03-05 21:27:19 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2010-03-05 21:27:19 +0100 |
commit | e341eae7dbe94c854c8b399390c704afcbea0bd0 (patch) | |
tree | 66de31515db2e8705237c9829cb0fa13385ac574 /portato/backend | |
parent | 4f47201c9b6e13aeb8ee987055e895a1739e518c (diff) | |
download | portato-e341eae7dbe94c854c8b399390c704afcbea0bd0.tar.gz portato-e341eae7dbe94c854c8b399390c704afcbea0bd0.tar.bz2 portato-e341eae7dbe94c854c8b399390c704afcbea0bd0.zip |
Corrected typo
Diffstat (limited to '')
-rw-r--r-- | portato/backend/portage/system.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/backend/portage/system.py b/portato/backend/portage/system.py index 7ca7b49..3aaa060 100644 --- a/portato/backend/portage/system.py +++ b/portato/backend/portage/system.py @@ -262,7 +262,7 @@ class PortageSystem (SystemInterface): if not best: return - if not best.is_installed() and (best.is_masked() or best.is_testing(True)): # check to not update unnecessairily + if not best.is_installed() and (best.is_masked() or best.is_testing(True)): # check to not update unnecessarily for i in inst: if i.matches(crit): debug("The installed %s matches %s. Discarding upgrade to masked version %s.", i.get_cpv(), crit, best.get_version()) |