Remove gamedir_client backwards compat shim.

You'll want to make sure to use egi_client instead. See egi_client/README.md
for instructions.
This commit is contained in:
Greg Taylor 2016-10-18 20:57:56 -07:00
parent 1781a5acda
commit 654b32a0b3

View file

@ -1,17 +0,0 @@
import warnings
from evennia.contrib.egi_client import EvenniaGameIndexService
class EvenniaGameDirService(EvenniaGameIndexService):
"""
This is a compatibility shim to get us through the EGD to EGI rename.
"""
def __init__(self):
warnings.warn(
"evennia.contrib.gamedir_client is deprecated and pending immediate "
"removal. Please update your game's server_services_plugins.py to use "
"evennia.contrib.egi_client.EvenniaGameIndexService instead.",
DeprecationWarning)
super(EvenniaGameDirService, self).__init__()