From d283576390ecd70dd50321253485aafda14343a7 Mon Sep 17 00:00:00 2001 From: Timothee Cour Date: Mon, 11 May 2015 21:30:01 -0700 Subject: [PATCH] fix https://github.com/Hackerpilot/Dscanner/issues/251 --- src/main.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.d b/src/main.d index 36a3fd7..69f85f2 100644 --- a/src/main.d +++ b/src/main.d @@ -280,7 +280,8 @@ string[] expandArgs(string[] args) // isFile can throw if it's a broken symlink. bool isFileSafe(T)(T a) { - try{ + try + { return isFile(a); } catch(FileException)