summaryrefslogtreecommitdiffstats
path: root/tests/features/wrappager.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/features/wrappager.py')
-rwxr-xr-xtests/features/wrappager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/features/wrappager.py b/tests/features/wrappager.py
index e98ea979..51d49095 100755
--- a/tests/features/wrappager.py
+++ b/tests/features/wrappager.py
@@ -3,13 +3,13 @@ import sys
def wrappager(boundary):
- print (boundary)
+ print(boundary)
while 1:
buf = sys.stdin.read(2048)
if not buf:
break
sys.stdout.write(buf)
- print (boundary)
+ print(boundary)
if __name__ == "__main__":