diff options
author | tv <tv@nomic.retiolum> | 2014-04-20 12:13:33 +0200 |
---|---|---|
committer | tv <tv@nomic.retiolum> | 2014-04-20 12:13:33 +0200 |
commit | 01d8f1f70a889519fd181f889e070450b8e62c97 (patch) | |
tree | e5a012faf4f4ff98b15e2e66e3dbf0bd7f340016 /Reaktor/config.py | |
parent | ca5d255950524d1e90dd3370b1d42c2cf28124dd (diff) |
reaktor.py: set cwd
Diffstat (limited to 'Reaktor/config.py')
-rw-r--r-- | Reaktor/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Reaktor/config.py b/Reaktor/config.py index 88ae837c..88701379 100644 --- a/Reaktor/config.py +++ b/Reaktor/config.py @@ -1,9 +1,12 @@ +from os import environ debug = True # CAVEAT name should not contains regex magic name = 'crabmanner' +workdir = environ['HOME'] + '/state' + irc_alarm_timeout = 300 irc_hammer_interval = 10 irc_kill_timeout = 360 |