Index: lnt/server/db/v4db.py =================================================================== --- lnt/server/db/v4db.py +++ lnt/server/db/v4db.py @@ -50,7 +50,7 @@ tsdb = lnt.server.db.testsuitedb.TestSuiteDB(self, name, suite) self.testsuite[name] = tsdb # Order testuites alphabetically to get groupings - self.testsuite = dict (sorted (self.testsuite.items())) + self.testsuite = dict(sorted(self.testsuite.items())) def __init__(self, path, config, baseline_revision=0): # If the path includes no database type, assume sqlite. Index: lnt/server/ui/app.py =================================================================== --- lnt/server/ui/app.py +++ lnt/server/ui/app.py @@ -53,7 +53,7 @@ """Take SQLAlchemy objects and jsonify them. If the object has an __json__ method, use that instead.""" - def __init__(self, *args, **kwargs): + def __init__(self, *args, **kwargs): super(LNTObjectJSONEncoder, self).__init__(*args, **kwargs) def default(self, obj):