Skip to content

Commit

Permalink
Update nf_core/modules/lint.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels authored Mar 19, 2021
1 parent 6726877 commit e0c22bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nf_core/modules/lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def get_installed_modules(self):
for m in sorted([m for m in os.listdir(nfcore_modules_dir) if not m == "lib"]):
if not os.path.isdir(os.path.join(nfcore_modules_dir, m)):
raise ModuleLintException(
f"File found in {nfcore_modules_dir} ({m})! This directly should only contain module directories."
f"File found in '{nfcore_modules_dir}': '{m}'! This directly should only contain module directories."
)
m_content = os.listdir(os.path.join(nfcore_modules_dir, m))
# Not a module, but contains sub-modules
Expand Down

0 comments on commit e0c22bb

Please sign in to comment.