diff options
author | Martin Kelly <martin@surround.io> | 2016-01-14 14:07:03 -0800 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2016-01-20 23:12:33 +0000 |
commit | f528f38a98c40fc34d13b8ebf2ad6c4f0a27e700 (patch) | |
tree | be0f750425dcc62e1003f6a68667c18f7cb1d32c | |
parent | 53f9a0da297cbeb402e76a4a7df2e587e73ab07f (diff) |
config: fix typo
https://bugzilla.gnome.org/show_bug.cgi?id=760909
-rw-r--r-- | cerbero/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/config.py b/cerbero/config.py index 285df290..7339f214 100644 --- a/cerbero/config.py +++ b/cerbero/config.py @@ -329,7 +329,7 @@ class Config (object): def set_property(self, name, value, force=False): if name not in self._properties: - raise ConfigurationError('Unkown key %s' % name) + raise ConfigurationError('Unknown key %s' % name) if force or getattr(self, name) is None: setattr(self, name, value) |