Skip to content

Commit

Permalink
reverted to original file mask, related to #96
Browse files Browse the repository at this point in the history
  • Loading branch information
ianneilmacleod committed Apr 25, 2018
1 parent 3105810 commit 2798449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/om-extensions/test_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_multifile():
ret = gxprj.get_user_input('Testing a multi-file list default', 'Multiple files:', kind='file', default=['maki.dat', 'list.', '4.5'], filemask="**")
print('multifile from list default return: {}'.format(ret))

ret = gxprj.get_user_input('Testing a multi-file *.grd;', 'Multiple grids:', kind='file', filemask=["**,*.grd"])
ret = gxprj.get_user_input('Testing a multi-file *.grd', 'Multiple grids:', kind='file', filemask="**,*.grd")
print('multifile grid return: {}'.format(ret))

ret = gxprj.get_user_input('Testing a multi-file *.map,*.gdb', 'Multiple maps/gdb:', kind='file', filemask=["**", "*.map", "*.gdb"])
Expand Down

0 comments on commit 2798449

Please sign in to comment.