From 42965e0444ad4f281038341129ffae40456295dc Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 7 Mar 2009 22:27:25 +0000 Subject: Use slice instead of startwith in stack_* incremental processing. svn path=/main/trunk/; revision=12779 --- pym/portage/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pym') diff --git a/pym/portage/util.py b/pym/portage/util.py index 5624b5286..d5c7955fc 100644 --- a/pym/portage/util.py +++ b/pym/portage/util.py @@ -177,7 +177,7 @@ def stack_dictlist(original_dicts, incremental=0, incrementals=[], ignore_none=0 if thing == "-*": final_dict[y] = [] continue - elif thing.startswith("-"): + elif thing[:1] == '-': try: final_dict[y].remove(thing[1:]) except ValueError: @@ -223,7 +223,7 @@ def stack_lists(lists, incremental=1): if incremental: if y == "-*": new_list.clear() - elif y.startswith("-"): + elif y[:1] == '-': new_list.pop(y[1:], None) else: new_list[y] = True -- cgit v1.2.3-1-g7c22