Commit 0e75d256 authored by Malte Jürgens's avatar Malte Jürgens
Browse files

Bug 1896978 - Return empty list of changed files instead of nothing in SrcRepository r=ahochheiden

parent 9490594d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -985,10 +985,10 @@ class SrcRepository(Repository):
        pass

    def get_changed_files(self, diff_filter="ADM", mode="unstaged", rev=None):
        pass
        return []

    def get_outgoing_files(self, diff_filter="ADM", upstream=None):
        raise MissingUpstreamRepo("Unknown Upstream")
        return []

    def add_remove_files(self, *paths: Union[str, Path]):
        pass