From e2067ba536dd78549d613dc14d8ad223c7d0aa5d Mon Sep 17 00:00:00 2001 From: Sagi Shadur Date: Tue, 29 Sep 2020 08:53:40 +0300 Subject: Rename get_ignored to ignored and fix the documentation --- git/repo/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git/repo/base.py') diff --git a/git/repo/base.py b/git/repo/base.py index ed976b2c..e0c4adb3 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -697,12 +697,12 @@ class Repo(object): finalize_process(proc) return untracked_files - def get_ignored(self, *paths): + def ignored(self, *paths): """Checks if paths are ignored via .gitignore Doing so using the "git check-ignore" method. :param paths: List of paths to check whether they are ignored or not - :return: sublist of ignored paths + :return: sublist of those paths which are ignored """ try: proc = self.git.check_ignore(*paths) -- cgit v1.2.1