From 76c01731cd2f0090c6e118c8de3c8230f9c2976a Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 12 Jan 2017 19:29:02 +0000 Subject: [PATCH] ast: Drop an unused error code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is no longer used, so there’s no point in registering it. Signed-off-by: Philip Withnall --- dbusapi/ast.py | 1 - 1 file changed, 1 deletion(-) diff --git a/dbusapi/ast.py b/dbusapi/ast.py index d3e40d6..bb2253b 100644 --- a/dbusapi/ast.py +++ b/dbusapi/ast.py @@ -46,7 +46,6 @@ def __init__(self): """Construct a new AstLog""" super(AstLog, self).__init__() self.register_issue_code('unknown-node') - self.register_issue_code('empty-root') self.register_issue_code('missing-attribute') self.register_issue_code('duplicate-node') self.register_issue_code('duplicate-interface')