From 90ab92e3f40fc93b86479aa14560d42eebd161b8 Mon Sep 17 00:00:00 2001
From: Michael Hanselmann <hansmi@google.com>
Date: Mon, 15 Oct 2007 12:08:43 +0000
Subject: [PATCH] Don't take unused parameter in qa_utils.py:Print{Info,Error}.

Reviewed-by: iustinp
---
 qa/qa_utils.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/qa/qa_utils.py b/qa/qa_utils.py
index 84330601b..41b8b9329 100644
--- a/qa/qa_utils.py
+++ b/qa/qa_utils.py
@@ -213,9 +213,9 @@ def PrintWarning(text):
   return _PrintWithColor(text, _WARNING_SEQ)
 
 
-def PrintError(f, text):
+def PrintError(text):
   return _PrintWithColor(text, _ERROR_SEQ)
 
 
-def PrintInfo(f, text):
+def PrintInfo(text):
   return _PrintWithColor(text, _INFO_SEQ)
-- 
GitLab