From: erickson Date: Fri, 21 Jan 2011 15:00:46 +0000 (+0000) Subject: repaired call to handle_request for router query; cannot survive without the self. X-Git-Tag: osrf_rel_2_1_0-alpha1~92 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9375d31dc4e5df541a1b19dfecc343fe8a3a891f;p=OpenSRF.git repaired call to handle_request for router query; cannot survive without the self. git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2145 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. '''