From 1ae87789ef5d3615e6920affc7ec10792cb6cd95 Mon Sep 17 00:00:00 2001 From: Spencer Jackson Date: Thu, 10 Dec 2015 12:33:53 -0500 Subject: [PATCH] Fix BatchErrorContinuation message initialization --- kmip/core/messages/contents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmip/core/messages/contents.py b/kmip/core/messages/contents.py index dbe64da..5ec632c 100644 --- a/kmip/core/messages/contents.py +++ b/kmip/core/messages/contents.py @@ -240,7 +240,7 @@ class BatchErrorContinuationOption(Enumeration): def __init__(self, value=None): super(BatchErrorContinuationOption, self).__init__( - BatchErrorContinuationOption, value, + enums.BatchErrorContinuationOption, value, enums.Tags.BATCH_ERROR_CONTINUATION_OPTION)