aboutsummaryrefslogtreecommitdiffstats
path: root/reaktor/core.py
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-09-04 22:45:07 +0200
committermakefu <github@syntax-fehler.de>2015-09-04 22:45:07 +0200
commitd5ce549e5bbdfcd5d67d801a0ca6fe759949ae47 (patch)
tree6c7d9c6629afd3d4af02d41882049ef78af912cf /reaktor/core.py
parentea22749eceeb3bac10e04e0853580cb76ee9c1b8 (diff)
Reaktor: fixes nick change
Diffstat (limited to 'reaktor/core.py')
-rwxr-xr-xreaktor/core.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/reaktor/core.py b/reaktor/core.py
index e6250df..eb8d982 100755
--- a/reaktor/core.py
+++ b/reaktor/core.py
@@ -79,7 +79,7 @@ class Reaktor(asybot):
log.debug("nickname differs ('{}' to '{}')".format(
self.nickname, self.getconf('name')))
- os.environ['IRC_NICKNAME'] = self.nickname
+ os.environ['REAKTOR_NICKNAME'] = self.nickname
self.getconf = make_getconf(self.config)
log.info('nickname changed to {}'.format(self.getconf('name')))
@@ -116,11 +116,14 @@ class Reaktor(asybot):
log.error("Workdir '%s' is not Writable! Falling back to root dir"%cwd)
cwd = "/"
- env = command.get('env', {})
+ env = {}
+
+ env.update(os.environ) # first merge os.environ
+ env.update(command.get('env', {})) # then env of cfg
+
env['_prefix'] = prefix
env['_from'] = prefix.split('!', 1)[0]
- env.update(os.environ)
log.debug('self:' +self.nickname)
# when receiving /query, answer to the user, not to self
if self.nickname in target: