Fix a too long line.
authorRené Nussbaumer <rn@google.com>
Wed, 26 Oct 2011 09:01:34 +0000 (11:01 +0200)
committerRené Nussbaumer <rn@google.com>
Wed, 26 Oct 2011 09:06:28 +0000 (11:06 +0200)
That's what you get for not running make lint :(

Signed-off-by: René Nussbaumer <rn@google.com>
Reviewed-by: Iustin Pop <iustin@google.com>

test/ganeti.utils.io_unittest.py

index 4ad06ef..503ae18 100755 (executable)
@@ -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):