Skip to content
Snippets Groups Projects

Fix typo in bin launching stub for wheels

Merged Leo P. Singer requested to merge leo-singer/lalsuite:wheels-typo into master
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -74,7 +74,7 @@ try:
from importlib.resources import files, as_file
except ImportError: # FIXME: Python < 3.9
from importlib_resources import files, as_file
with as_file(files('lalapps') / 'bin' / {}) as path:
with as_file(files('lalapps') / 'bin' / '{}') as path:
os.execv(path, sys.argv)
"""
Loading