diff options
Diffstat (limited to 'IRC')
| -rwxr-xr-x | IRC/reaktor.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/IRC/reaktor.py b/IRC/reaktor.py index bfd08d9..ec306e7 100755 --- a/IRC/reaktor.py +++ b/IRC/reaktor.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3  import os  from ircasy import asybot  from asyncore import loop @@ -69,6 +69,9 @@ class Reaktor(asybot):          log.info("cannot parse args!")      cwd = getconf('workdir') +    if not os.access(cwd,os.W_OK): +        log.error("Workdir '%s' is not Writable! Falling back to root dir"%cwd) +        cwd = "/"      env = command.get('env', {})      env['_prefix'] = prefix | 
