From d71fd1ae94a8597cec72445bc87c760497a9763c Mon Sep 17 00:00:00 2001 From: hlaaf Date: Mon, 27 Aug 2018 03:21:15 +0300 Subject: [PATCH] Define NimLime symbol for nimcheck (#107) --- nimlime_core/commands/nimcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nimlime_core/commands/nimcheck.py b/nimlime_core/commands/nimcheck.py index 49428e9..964769f 100644 --- a/nimlime_core/commands/nimcheck.py +++ b/nimlime_core/commands/nimcheck.py @@ -280,7 +280,7 @@ def run_nimcheck(file_path, callback, verbosity=2): # Prepare the regex's verbosity_str = '--verbosity:' + str(verbosity) return run_process( - (configuration.nim_exe, 'check', verbosity_str, file_path), + (configuration.nim_exe, 'check', verbosity_str, '-d:NimLime', file_path), callback, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, )