File tree 3 files changed +6
-5
lines changed
hkube_python_wrapper/wrapper
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 16
16
from hkube_python_wrapper .communication .streaming .StreamingManager import StreamingManager
17
17
from hkube_python_wrapper .util .queueImpl import Queue , Empty
18
18
from hkube_python_wrapper .util .timerImpl import Timer
19
- from hkube_python_wrapper .util .logger import log , algorithmLogger
19
+ from hkube_python_wrapper .util .logger import log , algorithmLogger
20
20
from hkube_python_wrapper .util .url_encode_impl import url_encode
21
21
from hkube_python_wrapper .util .stdout_redirector import stdout_redirector
22
22
import os
@@ -310,8 +310,9 @@ def _log_message(self, data):
310
310
pass
311
311
312
312
def _getMethod (self , name ):
313
- return self ._algorithm .get (name )
314
-
313
+ if (self ._algorithm ):
314
+ return self ._algorithm .get (name )
315
+ return None
315
316
def _init (self , options ):
316
317
redirector = None
317
318
try :
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 2.5 .0-dev10
2
+ current_version = 2.6 .0-dev1
3
3
commit = False
4
4
tag = False
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
Original file line number Diff line number Diff line change 6
6
7
7
here = os .path .abspath (os .path .dirname (__file__ ))
8
8
9
- VERSION = '2.5 .0-dev10 '
9
+ VERSION = '2.6 .0-dev1 '
10
10
11
11
12
12
You can’t perform that action at this time.
0 commit comments