From 1521f620024e9817dd4ae7b4f271fbccb3264be6 Mon Sep 17 00:00:00 2001 From: Ed Cranford Date: Mon, 23 Apr 2012 15:20:11 -0500 Subject: [PATCH] PEP8 on a comment and removed a log debug line. --- reddwarf/instance/models.py | 1 - run_tests.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/reddwarf/instance/models.py b/reddwarf/instance/models.py index 1ad6baf8ef..e484e51300 100644 --- a/reddwarf/instance/models.py +++ b/reddwarf/instance/models.py @@ -577,7 +577,6 @@ class RootHistory(ModelBase): history = cls.load(context, instance_id) if history is not None: return history - LOG.debug("Context right now is: %s" % str(context.to_dict())) history = RootHistory(instance_id, user) history.save() return history diff --git a/run_tests.py b/run_tests.py index 4da9ee1e43..775adf406f 100644 --- a/run_tests.py +++ b/run_tests.py @@ -341,8 +341,8 @@ if __name__ == '__main__': hdlr.setFormatter(formatter) logger.addHandler(hdlr) logger.setLevel(logging.DEBUG) - # If any argument looks like a test name but doesn't have "reddwarf.tests" in - # front of it, automatically add that so we don't have to type as much + # If any argument looks like a test name but doesn't have "reddwarf.tests" + # in front of it, automatically add that so we don't have to type as much show_elapsed = True argv = [] for x in sys.argv: