From 2bfa890fafbfd2115a0ed79af6c49c1ef9ab6139 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 8 Feb 2018 19:50:19 -0500 Subject: [PATCH] Actually enable ^= It was inadvertently omitted. --- confluent_client/confluent/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_client/confluent/client.py b/confluent_client/confluent/client.py index 5f322705..92607f69 100644 --- a/confluent_client/confluent/client.py +++ b/confluent_client/confluent/client.py @@ -485,7 +485,7 @@ def updateattrib(session, updateargs, nodetype, noderange, options): try: for val in updateargs[1:]: val = val.split('=') - if val[0][-1] in (',', '-'): + if val[0][-1] in (',', '-', '^'): key = val[0][:-1] if val[0][-1] == ',': value = {'prepend': val[1]}