Repository: qpid-dispatch Updated Branches: refs/heads/master 7699d55b0 -> 48845b998
DISPATCH-1181: ensure local variable is initialised before it is used Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/48845b99 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/48845b99 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/48845b99 Branch: refs/heads/master Commit: 48845b99848de3864bbe4246376237d5762b2de8 Parents: 7699d55 Author: Gordon Sim <[email protected]> Authored: Mon Nov 12 20:37:44 2018 +0000 Committer: Gordon Sim <[email protected]> Committed: Mon Nov 12 20:37:44 2018 +0000 ---------------------------------------------------------------------- python/qpid_dispatch_internal/router/data.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/48845b99/python/qpid_dispatch_internal/router/data.py ---------------------------------------------------------------------- diff --git a/python/qpid_dispatch_internal/router/data.py b/python/qpid_dispatch_internal/router/data.py index 810f98d..d299e72 100644 --- a/python/qpid_dispatch_internal/router/data.py +++ b/python/qpid_dispatch_internal/router/data.py @@ -277,6 +277,7 @@ class MessageMAU(object): _add = '' _del = '' _exist = '' + _hints = '' if self.add_list != None: _add = ' add=%r' % self.add_list if self.del_list != None: _del = ' del=%r' % self.del_list if self.exist_list != None: _exist = ' exist=%r' % self.exist_list --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
