2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 09:32:21 +00:00

Fix python3 problem with octal

This commit is contained in:
Jarrod Johnson 2019-10-08 09:06:15 -04:00
parent 0975881d3b
commit 578ba06aa3

View File

@ -22,7 +22,7 @@ except NameError:
pass
def make_certificate():
umask = os.umask(0077)
umask = os.umask(0o77)
try:
os.makedirs('/etc/confluent/cfg')
except OSError as e: