Skip to content

Commit

Permalink
Fix typo in basestation_interface
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidRisch committed Jan 10, 2021
1 parent b5cb9d4 commit dd70a9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/basestation_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def attempt_loop(function, max_attempts, try_all=False):
else:
return function()
success_count += 1
log.e('Success of attempt {} of {}'.format(attempt_count, max_attempts))
log.i('Success of attempt {} of {}'.format(attempt_count, max_attempts))
except Exception as e:
last_error = e
log.e('Failure of attempt {} of {}'.format(attempt_count, max_attempts))
Expand Down

0 comments on commit dd70a9e

Please sign in to comment.