Skip to content
Snippets Groups Projects
Commit 168283c8 authored by Sean Farley's avatar Sean Farley
Browse files

context: add a no-op _poststatus method

This patch adds a private _poststatus method so that certain contexts, such as
workingctx, can add custom post-processing to status.
parent c6976a4a
No related branches found
No related tags found
No related merge requests found
......@@ -86,6 +86,14 @@
"""
return s
def _poststatus(self, other, s, match, listignored, listclean, listunknown):
"""provide a hook to allow child objects to postprocess status results
For example, this allows other contexts, such as workingctx, to filter
suspect symlinks in the case of FAT32 and NTFS filesytems.
"""
return s
def _buildstatus(self, other, s, match, listignored, listclean,
listunknown):
"""build a status with respect to another context"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment