Skip to content

Commit 190aca2

Browse files
author
Joe Hamman
authored
fix typo in VIC_VALGRIND_SUPPRESSIONS (UW-Hydro#60)
* update vic_valgrind_suppressions.supp filename * fix another typo in VIC_VALGRIND_SUPPRESSIONS
1 parent 843d050 commit 190aca2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tonic/models/vic/vic.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ def _call_vic(self, *args, **kwargs):
122122
self.args.extend([valgrind, '-v', '--leak-check=full',
123123
'--error-exitcode={0}'.format(errorcode)])
124124

125-
suppressions = os.getenv('VIC_VALGRIND_SUPRESSIONS',
126-
default_vic_valgrind_suppressions_path)
125+
suppressions = os.getenv('VIC_VALGRIND_SUPPRESSIONS',
126+
default_vic_valgrind_suppressions_path)
127127
if os.path.isfile(suppressions):
128128
self.args.extend(['--suppressions={0}'.format(suppressions)])
129129

0 commit comments

Comments
 (0)