From 5afb61ad26c6779cf5923a8901c66711a6aa8ebb Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 25 Dec 2015 17:51:55 -0200 Subject: [PATCH] Fix trailing white-space --- _pytest/capture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/capture.py b/_pytest/capture.py index 75acb178b..3895a714a 100644 --- a/_pytest/capture.py +++ b/_pytest/capture.py @@ -308,7 +308,7 @@ class NoCapture: class FDCapture: """ Capture IO to/from a given os-level filedescriptor. """ - def __init__(self, targetfd, tmpfile=None): + def __init__(self, targetfd, tmpfile=None): self.targetfd = targetfd try: self.targetfd_save = os.dup(self.targetfd)