Skip to content

Commit

Permalink
bug fix in compare_nc_nccmp and update to pypi version
Browse files Browse the repository at this point in the history
  • Loading branch information
jmills-ncar committed Jul 12, 2018
1 parent 0e92cea commit 4f73fce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='wrfhydropy',
version='0.0.3dev0',
version='0.0.4',
packages=find_packages(),
package_data={'wrfhydropy': ['core/data/*']},
url='https://github.com/NCAR/wrf_hydro_py',
Expand Down
2 changes: 1 addition & 1 deletion wrfhydropy/core/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def compare_nc_nccmp(candidate_nc: str,
# Convert exclude_vars list into a comman separated string
exclude_vars = ','.join(exclude_vars)
#append
command_list.append('-x ' + exclude_vars)
command_list = command_list + ['-x'] + [exclude_vars]

command_list.append(candidate_nc)
command_list.append(reference_nc)
Expand Down

0 comments on commit 4f73fce

Please sign in to comment.