summaryrefslogtreecommitdiff
path: root/miniircd
diff options
context:
space:
mode:
Diffstat (limited to 'miniircd')
-rwxr-xr-xminiircd2
1 files changed, 1 insertions, 1 deletions
diff --git a/miniircd b/miniircd
index 3d40bd6..bf4d443 100755
--- a/miniircd
+++ b/miniircd
@@ -678,7 +678,7 @@ class Server(object):
def make_pid_file(self, filename):
try:
- fd = os.open(filename, os.O_RDWR | os.O_CREAT | os.O_EXCL, 0644)
+ fd = os.open(filename, os.O_RDWR | os.O_CREAT | os.O_EXCL, 0o644)
os.write(fd, "%i\n" % os.getpid())
os.close(fd)
except: