some more unicode removed
This commit is contained in:
@@ -1224,7 +1224,7 @@ def plannedsessions_manage_view(request,userid=0,
|
||||
plannedsessionstuple = []
|
||||
|
||||
for ps in sps:
|
||||
sessiontpl = (ps.id,ps.__unicode__())
|
||||
sessiontpl = (ps.id,ps.__str__())
|
||||
plannedsessionstuple.append(sessiontpl)
|
||||
|
||||
plannedsessionstuple = tuple(plannedsessionstuple)
|
||||
@@ -1235,7 +1235,7 @@ def plannedsessions_manage_view(request,userid=0,
|
||||
choices = []
|
||||
|
||||
for w in ws:
|
||||
wtpl = (w.id, w.__unicode__())
|
||||
wtpl = (w.id, w.__str__())
|
||||
choices.append(wtpl)
|
||||
if w.id in initialworkouts:
|
||||
workoutdata['initial'].append(w.id)
|
||||
|
||||
Reference in New Issue
Block a user