Skip to content

Commit

Permalink
I messed up poll_url by putting **kwargs in when GLM/GLMGrid calls it…
Browse files Browse the repository at this point in the history
… ....typo during an update yesterday.
  • Loading branch information
Kevin Normoyle committed Apr 21, 2013
1 parent 2b1ac2e commit bfd567b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/h2o.py
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ def GLM(self, key,
a = self.poll_url(a['response'],
timeoutSecs=timeoutSecs, retryDelaySecs=retryDelaySecs,
initialDelaySecs=initialDelaySecs, pollTimeoutSecs=pollTimeoutSecs,
noise=noise, benchmarkLogging=benchmarkLogging, **kwargs)
noise=noise, benchmarkLogging=benchmarkLogging)
verboseprint("GLM done:", dump_json(a))

browseAlso = kwargs.get('browseAlso', False)
Expand All @@ -1175,7 +1175,7 @@ def GLMGrid(self, key,
a = self.poll_url(a['response'],
timeoutSecs=timeoutSecs, retryDelaySecs=retryDelaySecs,
initialDelaySecs=initialDelaySecs, pollTimeoutSecs=pollTimeoutSecs,
noise=noise, benchmarkLogging=benchmarkLogging, **kwargs)
noise=noise, benchmarkLogging=benchmarkLogging)
verboseprint("GLMGrid done:", dump_json(a))

browseAlso = kwargs.get('browseAlso', False)
Expand Down

0 comments on commit bfd567b

Please sign in to comment.