Skip to content

Commit f8cc137

Browse files
author
ocaisa
authored
Merge pull request #3773 from Flamefire/fix_path
Fix forgotten renaming of 'l' to 'char'
2 parents 20808ff + f598c2e commit f8cc137

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

easybuild/tools/include.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,11 @@
7272
for subdir in subdirs:
7373
__path__ = pkgutil.extend_path(__path__, '%s.%s' % (__name__, subdir))
7474
75-
del l, subdir, subdirs
75+
del subdir, subdirs
76+
if 'char' in dir():
77+
del char
7678
77-
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
79+
__path__ = pkgutil.extend_path(__path__, __name__)
7880
"""
7981

8082

0 commit comments

Comments
 (0)