Skip to content

Commit

Permalink
utils/mkhtml: fix print warning/fatal message during compilation (#2139)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmszi committed Feb 7, 2022
1 parent 1ab1c46 commit 9b3fb6f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion utils/mkhtml.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,15 @@
import grass.script as gs
except ImportError:
# During compilation GRASS GIS
gs = None
_ = str

class gs:
def warning(message):
pass

def fatal(message):
pass


HEADERS = {
"User-Agent": "Mozilla/5.0",
Expand Down

0 comments on commit 9b3fb6f

Please sign in to comment.