From 6b2656efae17fb0f8cb019fd1b311f3ae103239a Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Thu, 27 Feb 2020 18:43:44 +0100 Subject: [PATCH] fix constructor --- owrx/controllers/assets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/owrx/controllers/assets.py b/owrx/controllers/assets.py index 4c55e17..96782f5 100644 --- a/owrx/controllers/assets.py +++ b/owrx/controllers/assets.py @@ -46,13 +46,13 @@ class OwrxAssetsController(AssetsController): class AprsSymbolsController(AssetsController): - def __init__(self, handler, request): + def __init__(self, handler, request, options): pm = PropertyManager.getSharedInstance() path = pm["aprs_symbols_path"] if not path.endswith("/"): path += "/" self.path = path - super().__init__(handler, request) + super().__init__(handler, request, options) def getFilePath(self, file): return self.path + file