git-svn-id: https://svn.osgeo.org/grass/grass/trunk@74051 15284696-431f-4ddb-bdfa-cd5b030d7da7
@@ -1933,6 +1933,8 @@ def get_username():
s = p.stdout.read()
p.wait()
user = s.strip()
+ if type(user) is bytes:
+ user = decode(user)
except:
pass
if not user: