From b355affbb8b61121d47f9d286265f373fb3a1a8a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ren=C3=A9=20Nussbaumer?= Date: Wed, 26 Oct 2011 11:01:34 +0200 Subject: [PATCH] Fix a too long line. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit That's what you get for not running make lint :( Signed-off-by: René Nussbaumer Reviewed-by: Iustin Pop --- test/ganeti.utils.io_unittest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/ganeti.utils.io_unittest.py b/test/ganeti.utils.io_unittest.py index 4ad06ef..503ae18 100755 --- a/test/ganeti.utils.io_unittest.py +++ b/test/ganeti.utils.io_unittest.py @@ -515,7 +515,8 @@ class TestRename(unittest.TestCase): self.assertTrue(os.path.exists(os.path.join(self.tmpdir, "test/xyz"))) self.assertFalse(os.path.exists(os.path.join(self.tmpdir, "test/foo/bar"))) - self.assertFalse(os.path.exists(os.path.join(self.tmpdir, "test/foo/bar/baz"))) + self.assertFalse(os.path.exists(os.path.join(self.tmpdir, + "test/foo/bar/baz"))) class TestMakedirs(unittest.TestCase): -- 1.7.10.4