From: Michael Tremer Date: Fri, 17 Dec 2010 10:45:20 +0000 (+0100) Subject: Fix some identation and typos. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2109db85856944e37967273638f58dfd088251bb;p=ipfire.org.git Fix some identation and typos. --- diff --git a/www/boot.py b/www/boot.py index d975d501..707e769a 100644 --- a/www/boot.py +++ b/www/boot.py @@ -51,7 +51,7 @@ class MenuCfgHandler(BaseHandler): ident = "\t" * level if entry.type == "seperator": - lines.append(ident + "menu seperator") + lines.append(ident + "menu separator") lines.append("") elif entry.type == "header": @@ -62,9 +62,9 @@ class MenuCfgHandler(BaseHandler): lines.append(ident + "\tlabel %d.back" % entry.id) lines.append(ident + "\t\tmenu label Back...") lines.append(ident + "\t\tmenu exit") - lines.append(ident + "\tmenu seperator") + lines.append(ident + "\tmenu separator") - lines.append(ident + "%s" % self._menu_string(entry.submenu, level=level+1)) + lines.append("%s" % self._menu_string(entry.submenu, level=level+1)) lines.append(ident + "menu end") lines.append("")