9 lines
96 B
Python
9 lines
96 B
Python
#!/usr/bin/python
|
|
|
|
import os
|
|
# set umask
|
|
os.umask(0077)
|
|
|
|
import pyzor.client
|
|
pyzor.client.run()
|