py3: use multi-line import in test-wireproto.py
authortimeless <timeless@mozdev.org>
Sun, 10 Apr 2016 21:32:08 +0000
changeset 28860 50d11dd8ac02
parent 28859 af2e00c85d0a
child 28861 86db5cb55d46
py3: use multi-line import in test-wireproto.py The reason I did it is that I had a later commit that was adding to the list.
tests/test-wireproto.py
--- a/tests/test-wireproto.py	Sun Apr 10 21:32:05 2016 +0000
+++ b/tests/test-wireproto.py	Sun Apr 10 21:32:08 2016 +0000
@@ -1,8 +1,9 @@
 from __future__ import absolute_import, print_function
 
 import StringIO
-
-from mercurial import wireproto
+from mercurial import (
+    wireproto,
+)
 
 class proto(object):
     def __init__(self, args):