mirror of
https://github.com/evennia/evennia.git
synced 2026-03-22 07:46:30 +01:00
EGD: Send empty string instead of 'None' when no game_website is specified.
This commit is contained in:
parent
e12e4652dc
commit
d1f5e7fdeb
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ class EvenniaGameDirClient(object):
|
|||
values = {
|
||||
'game_name': settings.SERVERNAME,
|
||||
'game_status': gd_config['game_status'],
|
||||
'game_website': gd_config.get('game_website'),
|
||||
'game_website': gd_config.get('game_website') or '',
|
||||
'listing_contact': gd_config['listing_contact'],
|
||||
'evennia_version': get_evennia_version(),
|
||||
'telnet_hostname': gd_config['telnet_hostname'],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue