From: erickson Date: Fri, 21 Jan 2011 15:13:50 +0000 (+0000) Subject: repaired call to handle_request for router query; cannot survive without the self. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=474cbc3f4dfa9ba492d20fc242059068f0f79e40;p=working%2FOpenSRF.git repaired call to handle_request for router query; cannot survive without the self. git-svn-id: svn://svn.open-ils.org/OpenSRF/branches/rel_2_0@2146 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/python/srfsh.py b/src/python/srfsh.py index e41adc5..c3e226b 100755 --- a/src/python/srfsh.py +++ b/src/python/srfsh.py @@ -222,7 +222,7 @@ class Srfsh(object): self.report("router query options: %s\n" % ','.join(self.router_command_map.keys())) return - return handle_request(['router', self.router_command_map[query]]) + return self.handle_request(['router', self.router_command_map[query]]) def handle_set(self, parts): ''' Set env variables to control srfsh behavior. '''