From 9b91ca70bd05c43e2a41468349f9ac815e5a5828 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Fri, 14 Oct 2022 20:19:37 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20incorrect=20exclude=20sign?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.py b/src/parser.py index 198e83a..c3ed9b2 100644 --- a/src/parser.py +++ b/src/parser.py @@ -54,7 +54,7 @@ class Parser(object): :return: List of excluded patches """ patch_index = self._PATCHES.index(name) - if self._PATCHES[patch_index - 1] == "e": + if self._PATCHES[patch_index - 1] == "-e": self._PATCHES[patch_index - 1] = "-i" else: self._PATCHES[patch_index - 1] = "-e"