From 49dddc806f1721d62076d7e2074cc332c1c8ac35 Mon Sep 17 00:00:00 2001 From: Jaden <jadenpdi@gmail.com> Date: Sat, 19 Jan 2019 10:55:07 -0800 Subject: [PATCH] [backend] fix misspelling "unkown" -> "unknown" Fixes #190 --- beat/editor/backend/assetmodel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beat/editor/backend/assetmodel.py b/beat/editor/backend/assetmodel.py index 185fb57c..4e0b273b 100644 --- a/beat/editor/backend/assetmodel.py +++ b/beat/editor/backend/assetmodel.py @@ -46,7 +46,7 @@ class AssetType: @classmethod def path(cls, type_): - path = "unkown" + path = "unknown" if type_ == cls.Algorithm: path = "algorithms" elif type_ == cls.Database: -- GitLab