Skip to content

Commit f16fab2

Browse files
committed
Fixed typo
1 parent 074897a commit f16fab2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smart_incubator/server/smart_controller.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def _parse_serial_line(self,line):
252252
fields = line.rstrip().split(" ")
253253

254254
if len(fields) != self._n_expected_values:
255-
logging.warning("Wrong number of fields in serial input. Expect %s, got %i." % (n_expected_values, len(fields)))
255+
logging.warning("Wrong number of fields in serial input. Expect %s, got %i." % (self._n_expected_values, len(fields)))
256256
logging.debug('fields = ' + str(fields))
257257
return
258258

0 commit comments

Comments
 (0)