From e705d3b5a9b6432f75a6c178070565a0f2a3b4e9 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Wed, 26 Jan 2011 10:01:58 +0100 Subject: [PATCH] Fix name conflict with _() --- src/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.py b/src/commands.py index bc54ce884..1983ffe87 100644 --- a/src/commands.py +++ b/src/commands.py @@ -314,7 +314,7 @@ def _getRe(f): s = args.pop(0) def isRe(s): try: - _ = f(s) + foo = f(s) return True except ValueError: return False