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

« back to all changes in this revision

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

ivle.webapp.tutorial: Clean up a little more...

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
from ivle.webapp.base.xhtml import XHTMLView
42
42
from ivle.webapp.base.plugins import BasePlugin
43
43
from ivle.webapp.errors import NotFound, Forbidden
44
 
 
45
44
from ivle.webapp.tutorial.rst import rst
46
45
 
47
 
THIS_APP = "tutorial"
48
 
 
49
46
# Regex for valid identifiers (subject/worksheet names)
50
47
re_ident = re.compile("[0-9A-Za-z_]+")
51
48