From 471549995858628332318a9497b0d7e807a75431 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 26 May 2013 19:29:42 +0200 Subject: [PATCH] Fixed a missing sessid on System commands. Resolves Issue 377. --- src/commands/cmdhandler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/cmdhandler.py b/src/commands/cmdhandler.py index cb257c0f9..9be05a915 100644 --- a/src/commands/cmdhandler.py +++ b/src/commands/cmdhandler.py @@ -301,6 +301,7 @@ def cmdhandler(caller, raw_string, testing=False, sessid=None): syscmd.cmdstring = syscmd.key syscmd.args = sysarg syscmd.cmdset = cmdset + syscmd.sessid = sessid syscmd.raw_string = unformatted_raw_string if hasattr(syscmd, 'obj') and hasattr(syscmd.obj, 'scripts'):