Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2021-11-08 18:03:18 +01:00
parent 679f7aa8db
commit 1900023c6b
2 changed files with 1 additions and 10 deletions

View File

@@ -15,15 +15,6 @@ def default(o): # pragma: no cover
from rowsandall_app.settings import NK_OAUTH_LOCATION
def dologging(s):
tstamp = time.localtime()
timestamp = time.strftime('%b-%d-%Y %H:%M:%S', tstamp)
with open('debuglog.log','a') as f:
f.write('\n')
f.write(timestamp)
f.write(' ')
f.write(s)
# Send workout to TP
@permission_required('workout.change_workout',fn=get_workout_by_opaqueid,raise_exception=True)
def workout_tp_upload_view(request,id=0):