2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-26 03:19:48 +00:00

Actually enable ^=

It was inadvertently omitted.
This commit is contained in:
Jarrod Johnson 2018-02-08 19:50:19 -05:00
parent 94bce2f65b
commit 2bfa890faf

View File

@ -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]}