Skip to content

Commit bf25dba

Browse files
committed
Removed a new line from a module file as it caused problems with the codespell check that is run automatically.
1 parent 8f35a8c commit bf25dba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/2022-CSC_and_LO/1_Intro/1_02_Lmod.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ still fail to remove the 2.7 directory from ``PYTHONPATH``.
708708
1. The files ``level1/MyPython/2.7.18.lua`` and ``level1/MyPython/3.6.10.lua``,
709709
both with the same contents:
710710
``` lua
711-
LmodMessage( '\nIn ' .. myModuleFullName() .. ' in mode ' .. mode() )
711+
LmodMessage( 'In ' .. myModuleFullName() .. ' in mode ' .. mode() )
712712
713713
local api_version = myModuleVersion():match( '(%d+%.%d+)%..*' )
714714
@@ -724,7 +724,7 @@ still fail to remove the 2.7 directory from ``PYTHONPATH``.
724724
2. The files ``level2/PythonAPI/2.7/MyPythonPackage/1.0.lua`` and
725725
``level2/PythonAPI/3.6/MyPythonPackage/1.0.lua``, both with the contents:
726726
``` lua
727-
LmodMessage( '\nIn ' .. myFileName() .. ' in mode ' .. mode() )
727+
LmodMessage( 'In ' .. myFileName() .. ' in mode ' .. mode() )
728728
729729
local python_api_version = myFileName():match( '.*/level2/PythonAPI/([^/]+)/.*' )
730730
LmodMessage( 'Detected Python API version from hierarchy: ' .. python_api_version )

0 commit comments

Comments
 (0)