2
0
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:
Jarrod Johnon 2014-09-30 11:35:11 -04:00
parent 37549481b6
commit d4b8294ec9

View File

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