Skip to content

Commit

Permalink
Define NimLime symbol for nimcheck (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
hlaaf authored and Varriount committed Aug 27, 2018
1 parent 4154fdc commit d71fd1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nimlime_core/commands/nimcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

Expand Down

0 comments on commit d71fd1a

Please sign in to comment.