From 0296a1a99cb1ad0a21729ea37fd53e171ee60614 Mon Sep 17 00:00:00 2001 From: Nick Daly Date: Sun, 27 Oct 2013 17:47:18 -0500 Subject: [PATCH] Removed unused import. --- modules/installed/system/config.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/installed/system/config.py b/modules/installed/system/config.py index 758a33c9c..29f39a3a6 100644 --- a/modules/installed/system/config.py +++ b/modules/installed/system/config.py @@ -11,7 +11,6 @@ from modules.auth import require from plugin_mount import PagePlugin, FormPlugin from actions.privilegedactions import privilegedaction_run import cfg -import re from forms import Form from model import User from util import * @@ -64,7 +63,7 @@ class general(FormPlugin, PagePlugin): order = 30 def help(self, *args, **kwargs): - return _(#"""Time Zone + return _(#"""Time Zone """

Set your timezone to get accurate timestamps. %(product)s will use this information to set your %(box)s's systemwide timezone.

@@ -108,8 +107,8 @@ class general(FormPlugin, PagePlugin): raise cherrypy.HTTPError(500, "Unknown Time Zone: %s" % kwargs['time_zone']) ## And now, the form. - form = Form(title=_("General Config"), - action="/sys/config/general/index", + form = Form(title=_("General Config"), + action="/sys/config/general/index", name="config_general_form", message=message ) form.html(self.help())