Skip to content

Commit

Permalink
Merge pull request #2 from jdahm/fix-debug
Browse files Browse the repository at this point in the history
Replace undefined DEBUG_MODE usage with False
  • Loading branch information
eddie-c-davis authored May 22, 2020
2 parents d4dc0ad + baa7eb7 commit 672c809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gt4py/backend/dawn_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ def _generic_generate_extension(
pyext_opts = dict(
verbose=options.backend_opts.get("verbose", False),
clean=options.backend_opts.get("clean", False),
debug_mode=options.backend_opts.get("debug_mode", gt_backend.DEBUG_MODE),
debug_mode=options.backend_opts.get("debug_mode", False),
add_profile_info=options.backend_opts.get("add_profile_info", False),
)
include_dirs = [
Expand Down

0 comments on commit 672c809

Please sign in to comment.