From 2d995d464f11339fd5fcad5818193bf6e38d43e2 Mon Sep 17 00:00:00 2001 From: mcarton Date: Wed, 28 Oct 2015 15:27:10 +0100 Subject: [PATCH] Fix the cpp11 rule --- thefuck/rules/cpp11.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thefuck/rules/cpp11.py b/thefuck/rules/cpp11.py index c30012ac..3cd7d728 100644 --- a/thefuck/rules/cpp11.py +++ b/thefuck/rules/cpp11.py @@ -1,7 +1,7 @@ from thefuck.utils import for_app -@for_app(['g++', 'clang++']) +@for_app('g++', 'clang++') def match(command): return ('This file requires compiler and library support for the ' 'ISO C++ 2011 standard.' in command.stderr or