From 8d38cfe0c09d7ef4d0bba826640f16de0484be34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B8=D1=80=D0=B5=D1=86=D0=BA=D0=B8=D0=B9=20=D0=9C?= =?UTF-8?q?=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Tue, 7 Feb 2017 14:14:33 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D1=91=D0=BD=20?= =?UTF-8?q?=D0=BF=D0=BE=D1=80=D1=8F=D0=B4=D0=BE=D0=BA=20=D1=80=D0=B5=D0=BF?= =?UTF-8?q?=D0=BE=D0=B7=D0=B8=D1=82=D0=BE=D1=80=D0=B8=D0=B5=D0=B2=20=D0=B2?= =?UTF-8?q?=20=D1=81=D0=BE=D0=BE=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D0=B5=20upd?= =?UTF-8?q?ate=20eix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pym/update/update.py | 1 - pym/update/variables/update.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pym/update/update.py b/pym/update/update.py index aaf4017..97011d5 100644 --- a/pym/update/update.py +++ b/pym/update/update.py @@ -37,7 +37,6 @@ from calculate.lib.cl_log import log import re import shutil from collections import MutableSet -from update_tasks import EmergeMark from calculate.lib.utils.git import Git, GitError, MTimeKeeper, NotGitError from calculate.lib.utils.portage import (Layman, EmergeLog, diff --git a/pym/update/variables/update.py b/pym/update/variables/update.py index f2f147f..ac43a29 100644 --- a/pym/update/variables/update.py +++ b/pym/update/variables/update.py @@ -1667,9 +1667,9 @@ class VariableClUpdateEixRepositories(ReadonlyVariable): def get(self): return ", ".join( - x.capitalize() for x in chain( + x.capitalize() for x in reversed(list(chain( self.Get('update.cl_update_rep_name'), - self.Get('update.cl_update_other_rep_name'))) + self.Get('update.cl_update_other_rep_name'))))) class VariableClUpdatePortageBinhost(ReadonlyVariable):