From 3444796f3e4ba147ccef4df735a8a09ea62b9e48 Mon Sep 17 00:00:00 2001 From: Vlad Dragos Date: Mon, 26 Sep 2016 13:59:28 +0300 Subject: [PATCH] Fix formating error. --- _pytest/capture.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_pytest/capture.py b/_pytest/capture.py index f4b6e64c3..b467dc17b 100644 --- a/_pytest/capture.py +++ b/_pytest/capture.py @@ -448,7 +448,8 @@ class DontReadFromInput: __iter__ = read def fileno(self): - raise UnsupportedOperation("redirected Stdin is pseudofile, has no fileno()") + raise UnsupportedOperation("redirected stdin is pseudofile, " + "has no fileno()") def isatty(self): return False