소스 검색

Reverse start and end

Foppe Hemminga 6 년 전
부모
커밋
ed902c3368
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      model.py

+ 1 - 1
model.py

@@ -128,7 +128,7 @@ def send_messages(scratches, source, start=0):
                                         m.time,
                                         m.utc,
                                         '{} {}'.format(m.horse_no, m.horse_display_name),
-                                        ' | {0:.2f}s'.format(start-end) if start != 0 else '')
+                                        ' | {0:.2f}s'.format(end-start) if start != 0 else '')
         print('this_message: {}'.format(message))
         # Append message if possible
         if len(long_message) + len(message) < 5997: