Commit d512a2dc authored by Andreas Jung's avatar Andreas Jung

fixed racing condition with exisiting inituser file

parent caa80c71
...@@ -120,7 +120,8 @@ def main(): ...@@ -120,7 +120,8 @@ def main():
} }
copyzopeskel.copyskel(skelsrc, skeltarget, None, None, **kw) copyzopeskel.copyskel(skelsrc, skeltarget, None, None, **kw)
write_inituser(inituser, user, password) if user and password:
write_inituser(inituser, user, password)
def usage(stream, msg=None): def usage(stream, msg=None):
if msg: if msg:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment