mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
🐛 Fix incorrect exclude sign
This commit is contained in:
+1
-1
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user