Private
Public Access
1
0

Merge branch 'release/v12.58'

This commit is contained in:
Sander Roosendaal
2020-05-25 15:14:17 +02:00

View File

@@ -1051,7 +1051,7 @@ def virtualevent_results_download_view(request,id=0):
)
df = pd.DataFrame.from_records(records.values())
df['workoutid'] = df['workoutid'].apply(lambda x:encoder.encode_hex(x))
df['workoutid'] = df['workoutid'].apply(lambda x:encoder.encode_hex(int(x)))
response = HttpResponse(df.to_csv())