~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/tutorial/__init__.py

  • Committer: William Grant
  • Date: 2010-02-23 08:48:09 UTC
  • mfrom: (1673 trunk)
  • mto: This revision was merged to the branch mainline in revision 1674.
  • Revision ID: grantw@unimelb.edu.au-20100223084809-du6dvsxrjhw15ytr
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
219
219
        Exercise.id == identifier).one()
220
220
 
221
221
    if exercise is None:
222
 
        raise ExerciseNotFound(identifier)
 
222
        raise ivle.worksheet.utils.ExerciseNotFound(identifier)
223
223
 
224
224
    # Read exercise file and present the exercise
225
225
    # Note: We do not use the testing framework because it does a lot more
588
588
             ]
589
589
 
590
590
    media = 'media'
591
 
    help = {'Tutorial': 'help.html'}
 
591
    help = {'Worksheets': 'help.html'}