From 91ce77dab19dd7d7d6be6f31c2a481d5c0492124 Mon Sep 17 00:00:00 2001 From: Sam O'Connor Date: Sun, 13 Mar 2016 13:18:01 +1100 Subject: [PATCH] fix stray "" --- src/repeat_try.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repeat_try.jl b/src/repeat_try.jl index ed74c22..21ebd56 100644 --- a/src/repeat_try.jl +++ b/src/repeat_try.jl @@ -88,7 +88,7 @@ function check_try_catch(expr, require_exception_variable::Bool) @assert typeof(expr.args[2]) == Symbol "" * """Expected exception vairable name.""" else - if typeof(expr.args[2]) != Symbol "" + if typeof(expr.args[2]) != Symbol @assert expr.args[2] == false expr.args[2] = :err end