mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 17:43:14 +00:00
Correct syntax error
Somehow a stray colon from an attempt to try locking persisted. Remove that colon.
This commit is contained in:
parent
37549481b6
commit
d4b8294ec9
@ -1168,7 +1168,7 @@ class ConfigManager(object):
|
||||
currdict = _cfgstore['tenant'][tenant]
|
||||
for category in dkdict.iterkeys():
|
||||
_mkpath(pathname)
|
||||
dbf = dbm.open(pathname + category, 'c', 384): # 0600
|
||||
dbf = dbm.open(pathname + category, 'c', 384) # 0600
|
||||
try:
|
||||
for ck in dkdict[category]:
|
||||
if ck not in currdict[category]:
|
||||
|
Loading…
Reference in New Issue
Block a user