summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Kim <justin.kim@collabora.com>2018-01-02 04:06:15 +0000
committerTim-Philipp Müller <tim@centricular.com>2018-01-02 09:33:39 +0000
commit44c0806898a8a809dc6b9b75dcbd6b1c52f3b0e1 (patch)
tree7fd3542d1c8b952d079e4cecc8bd3643dc14df35
parent3e8b102ba34036ae3e66b163a8e50aa83809381f (diff)
bootstrap/linux: fix typo in error message
https://bugzilla.gnome.org/show_bug.cgi?id=792112
-rw-r--r--cerbero/bootstrap/linux.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/bootstrap/linux.py b/cerbero/bootstrap/linux.py
index f3edf585..8bb99181 100644
--- a/cerbero/bootstrap/linux.py
+++ b/cerbero/bootstrap/linux.py
@@ -94,7 +94,7 @@ class DebianBootstrapper (UnixBootstrapper):
if arch in foreign_archs.split():
return
raise ConfigurationError(('Architecture %s is missing from your setup. ' + \
- 'You can add it with: "dpkg --add-architeture %s",' + \
+ 'You can add it with: "dpkg --add-architecture %s",' + \
' then run "apt-get update."') \
% (arch, arch))