From 525ba40417256f6448c52939274ee2505fbc6b78 Mon Sep 17 00:00:00 2001 From: Zhongyue Luo Date: Thu, 2 Feb 2012 14:15:39 +0900 Subject: Backslash continuations (misc.) Fixes bug #925166 This patch for packages which have few backslash continuations. Follow up patches will be for packages network, scheduler, virt, db/sqlalchemy, tests, and api/openstack. Change-Id: I4200010b47b33fa8b9115b5d379b543200f6668d --- nova/testing/runner.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nova/testing') diff --git a/nova/testing/runner.py b/nova/testing/runner.py index 39e8d7d8c..5939fba84 100644 --- a/nova/testing/runner.py +++ b/nova/testing/runner.py @@ -51,7 +51,7 @@ To run a single test module: python nova/testing/runner.py api.test_wsgi To run a single test: - python nova/testing/runner.py \ + python nova/testing/runner.py test_compute:ComputeTestCase.test_run_terminate """ @@ -130,9 +130,9 @@ class _Win32Colorizer(object): See _AnsiColorizer docstring. """ def __init__(self, stream): - from win32console import GetStdHandle, STD_OUT_HANDLE, \ - FOREGROUND_RED, FOREGROUND_BLUE, FOREGROUND_GREEN, \ - FOREGROUND_INTENSITY + from win32console import (GetStdHandle, STD_OUT_HANDLE, + FOREGROUND_RED, FOREGROUND_BLUE, + FOREGROUND_GREEN, FOREGROUND_INTENSITY) red, green, blue, bold = (FOREGROUND_RED, FOREGROUND_GREEN, FOREGROUND_BLUE, FOREGROUND_INTENSITY) self.stream = stream -- cgit