diff options
Diffstat (limited to 'Reaktor/reaktor')
-rwxr-xr-x | Reaktor/reaktor/commands/caps | 2 | ||||
-rwxr-xr-x | Reaktor/reaktor/commands/licht_resolver | 2 | ||||
-rw-r--r-- | Reaktor/reaktor/config.py | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/Reaktor/reaktor/commands/caps b/Reaktor/reaktor/commands/caps index ac8cc66d..b5d6642d 100755 --- a/Reaktor/reaktor/commands/caps +++ b/Reaktor/reaktor/commands/caps @@ -1,4 +1,4 @@ -#! /usr/bin/env python3 +#! /usr/bin/env python import imp import os diff --git a/Reaktor/reaktor/commands/licht_resolver b/Reaktor/reaktor/commands/licht_resolver index 5bdb6510..90d06c8c 100755 --- a/Reaktor/reaktor/commands/licht_resolver +++ b/Reaktor/reaktor/commands/licht_resolver @@ -1,4 +1,4 @@ -#! /usr/bin/python +#! /usr/bin/env python # -*- coding: utf-8 -*- map = { diff --git a/Reaktor/reaktor/config.py b/Reaktor/reaktor/config.py index 85824321..56ef71e8 100644 --- a/Reaktor/reaktor/config.py +++ b/Reaktor/reaktor/config.py @@ -102,7 +102,8 @@ public_commands = [ default_command('tell', cmd='tell-on_privmsg', env={ 'state_file': workdir + '/tell.txt' }), - default_command('nag', env=nag_env), + # TODO this is disabled until someone fixes it + #default_command('nag', env=nag_env), simple_command('identify', env={ 'config_filename': config_filename }), |