From: Michael Tremer Date: Sat, 5 Mar 2011 21:38:16 +0000 (+0100) Subject: Filesystem repository gets prio 0. X-Git-Tag: 0.9.3~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e1797bba3053a7937e8bf9717e86827a1cd6f8f;p=pakfire.git Filesystem repository gets prio 0. --- diff --git a/pakfire/repository/oddments.py b/pakfire/repository/oddments.py index 11b1cbf42..b0b074fb1 100644 --- a/pakfire/repository/oddments.py +++ b/pakfire/repository/oddments.py @@ -20,3 +20,9 @@ class FileSystemRepository(RepositoryFactory): RepositoryFactory.__init__(self, pakfire, "filesystem", "Filesystem repository") + @property + def priority(self): + # Has always the highest priority because it has packages + # the user passed on the command line and really wants to get + # installed. + return 0