Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/init/grass.py
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,7 @@ def show_banner():
def say_hello():
"""Write welcome to stderr including Subversion revision if in svn copy"""
Comment thread
landam marked this conversation as resolved.
Outdated
sys.stderr.write(_("Welcome to GRASS GIS %s") % GRASS_VERSION)
if GRASS_VERSION.endswith('svn'):
if GRASS_VERSION.endswith('dev'):
try:
filerev = open(gpath('etc', 'VERSIONNUMBER'))
linerev = filerev.readline().rstrip('\n')
Expand All @@ -1608,7 +1608,7 @@ def say_hello():
pass


INFO_TEXT = r"""\
INFO_TEXT = r"""
%-41shttps://grass.osgeo.org
%-41s%s (%s)
%-41sg.manual -i
Expand Down