Skip to content

Commit

Permalink
wx.metadata/config: fix module not found error message (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmszi committed Sep 26, 2020
1 parent 8733d17 commit 0176e9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grass7/gui/wxpython/wx.metadata/mdlib/dependency.py
Expand Up @@ -113,10 +113,10 @@ def check_dependencies(module_name, check_version=False):

return True
except ModuleNotFoundError:
message = "!!! <{name}> {text} <{url}> !!!\n".format(
message = "{name} {text} <{url}>.\n".format(
name=module_name,
text='library is missing. Check requirements on the '
'manual page'.upper(),
'manual page',
url=URL,
)
sys.stderr.write(message)
Expand Down

0 comments on commit 0176e9a

Please sign in to comment.