Private
Public Access
1
0

added coxmate support

This commit is contained in:
Sander Roosendaal
2017-08-21 12:54:32 +02:00
parent 5db48401de
commit 07323ac545
2 changed files with 10 additions and 0 deletions

View File

@@ -315,6 +315,10 @@ def handle_nonpainsled(f2,fileformat,summary=''):
if (fileformat == 'ergdata'):
row = ErgDataParser(f2)
# handle CoxMate
if (fileformat == 'coxmate'):
row = CoxMateParser(f2)
# handle Mike
if (fileformat == 'bcmike'):
row = BoatCoachAdvancedParser(f2)