From 64f05549eba79bb9330d27705f7270ffea5cabeb Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Thu, 4 Sep 2014 00:13:54 +0100 Subject: [PATCH] Remove spaces inside parens. --- src/babel.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/babel.nim b/src/babel.nim index 10db107..7cf5bf1 100644 --- a/src/babel.nim +++ b/src/babel.nim @@ -688,7 +688,7 @@ proc init(options: TOptions) = # Now need to write out .babel file with projName and other details - if (not existsFile( os.getCurrentDir() / fName) and open(f=outFile, filename = fName, mode = fmWrite) ): + if (not existsFile(os.getCurrentDir() / fName) and open(f=outFile, filename = fName, mode = fmWrite)): outFile.writeln("[Package]") outFile.writeln("name = \"" & pkgName & "\"") outFile.writeln("version = \"0.01\"")