diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-05-18 20:16:30 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-05-18 20:16:30 +0200 |
commit | 3af5a5d9e3604a903505a04d2747c04986e6042f (patch) | |
tree | 6254f4c3b10d9dd960f1aa596a424a7b9192a6fe /lib/pure | |
parent | f86ca02960bfe853e19e38b008981c0469588828 (diff) | |
download | Nim-3af5a5d9e3604a903505a04d2747c04986e6042f.tar.gz |
os.nim: don't use echo for error reporting
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/os.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index 03445a035..9f3045224 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -907,7 +907,7 @@ proc rawCreateDir(dir: string): bool = elif errno == EEXIST: result = false else: - echo res + #echo res raiseOSError(osLastError()) else: when useWinUnicode: |