Update building.py

Removed extra colon from E-Mail label. Fixed capitalization.
This commit is contained in:
John Steensen 2017-01-01 19:14:44 -07:00 committed by Griatch
parent c1921be469
commit 4be45a6295

View file

@ -1915,7 +1915,7 @@ class CmdExamine(ObjManipCommand):
string += "\n|wSession id(s)|n: %s" % (", ".join("#%i" % sess.sessid
for sess in obj.sessions.all()))
if hasattr(obj, "email") and obj.email:
string += "\n|wE-Mail:|n: |c%s|n" % obj.email
string += "\n|wEmail|n: |c%s|n" % obj.email
if hasattr(obj, "has_player") and obj.has_player:
string += "\n|wPlayer|n: |c%s|n" % obj.player.name
perms = obj.player.permissions.all()