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)