Skip to content

Commit

Permalink
fixed interop issue with coffeescript 1.9 and higher
Browse files Browse the repository at this point in the history
  • Loading branch information
mwittig committed Jan 2, 2017
1 parent 264939b commit f2a639c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/board.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class Board extends events.EventEmitter

connect: (@timeout = 5*60*1000, @retries = 3) ->
# Stop watchdog if its running and close current connection
return @pendingConnect = @driver.connect(timeout, retries)
return @pendingConnect = @driver.connect(@timeout, @retries)

disconnect: ->
@stopWatchdog()
Expand Down

0 comments on commit f2a639c

Please sign in to comment.