summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2014-08-31 10:37:32 -0700
committerJoshua Harlow <harlowja@gmail.com>2014-08-31 10:37:32 -0700
commit6ce7fc20dc97dd57bfa648b18145ef3382fbce22 (patch)
tree503804bf07ecc7b85d910747de0ed50930bab207
parent552f921a127757849a06e7bdb327986a42f46032 (diff)
downloadzake-6ce7fc20dc97dd57bfa648b18145ef3382fbce22.tar.gz
Fix the overline length
-rw-r--r--zake/tests/test_client.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/zake/tests/test_client.py b/zake/tests/test_client.py
index 1dc9e98..8804dfe 100644
--- a/zake/tests/test_client.py
+++ b/zake/tests/test_client.py
@@ -321,7 +321,8 @@ class TestClient(test.Test):
paths = []
for i in range(0, 20):
paths.append("/tmp%010d" % (i))
- t = make_daemon_thread(target=thread_create, args=(c, paths[-1]))
+ t = make_daemon_thread(target=thread_create,
+ args=(c, paths[-1]))
threads.append(t)
t.start()
while threads: