diff tests/test-commandserver.py @ 16687:e34106fa0dc3

cleanup: "raise SomeException()" -> "raise SomeException"
author Brodie Rao <brodie@sf.io>
date Sat, 12 May 2012 16:00:58 +0200
parents 525fdb738975
children 1c8e0d6ac3b0
line wrap: on
line diff
--- a/tests/test-commandserver.py	Sat May 12 16:00:57 2012 +0200
+++ b/tests/test-commandserver.py	Sat May 12 16:00:58 2012 +0200
@@ -18,7 +18,7 @@
 def readchannel(server):
     data = server.stdout.read(5)
     if not data:
-        raise EOFError()
+        raise EOFError
     channel, length = struct.unpack('>cI', data)
     if channel in 'IL':
         return channel, length