diff --git a/ennstatus/api/model.py b/ennstatus/api/model.py --- a/ennstatus/api/model.py +++ b/ennstatus/api/model.py @@ -96,7 +96,7 @@ class Server: self.fingerprint = kwargs['fingerprint'] self.last_updated = kwargs['last_updated'] self.country = kwargs['country'] - self.bandwith = kwargs.get('bandwith') + self.bandwidth = kwargs.get('bandwidth') if self.type == 'bridge': self.obfs = kwargs.get('obfs') diff --git a/ennstatus/api/schema/server.json b/ennstatus/api/schema/server.json --- a/ennstatus/api/schema/server.json +++ b/ennstatus/api/schema/server.json @@ -91,7 +91,7 @@ "type": "string", "format": "date-time" }, - "bandwith": { + "bandwidth": { "type": [ "string", "null" diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def _get_requirements(): setup(name='Ennstatus', - version='5.0.1-dev', + version='5.0.2-dev', description=('Ennstatus provides the user with vital information about ' 'the status of the organizations Tor servers.'), author='Frënn vun der Ënn',