From da236c32ce8c11e0e70be02fa233d31f87dd6ca8 Mon Sep 17 00:00:00 2001 From: kalmar Date: Sat, 1 Apr 2017 12:14:25 +0200 Subject: [PATCH] fix for 9697bdc (name was not set to variable) --- SL.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL.jl b/SL.jl index 68eaeca..e5957eb 100644 --- a/SL.jl +++ b/SL.jl @@ -153,7 +153,7 @@ function main() end radius = parsed_args["radius"] if radius == 0 - name*"-$(string(upper_bound))" + name = name*"-$(string(upper_bound))" radius = 2 else name = name*"-$(string(upper_bound))-r=$radius"