diff --git a/conservancy_beancount/plugin/meta_payable_documentation.py b/conservancy_beancount/plugin/meta_payable_documentation.py index 68b2f08ae9b4cfc960728dddf48c1877cf3b1f83..8f77611066f1f316804445186f619b4fbf122988 100644 --- a/conservancy_beancount/plugin/meta_payable_documentation.py +++ b/conservancy_beancount/plugin/meta_payable_documentation.py @@ -26,7 +26,7 @@ class MetaPayableDocumentation(core._RequireLinksPostingMetadataHook): CHECKED_METADATA = ['approval', 'contract'] def _run_on_post(self, txn: Transaction, post: data.Posting) -> bool: - if post.account.is_under('Liabilities:Payable'): + if post.account.is_under('Liabilities:Payable:Accounts'): return not post.is_credit() else: return False