From 65619c3a0017233f01a5dc5df55f4d135c030254 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Tue, 9 Jan 2024 16:05:29 -0500 Subject: [PATCH] Fixing convertImage(). --- owrx/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owrx/storage.py b/owrx/storage.py index 0c567705..9c22c4e9 100644 --- a/owrx/storage.py +++ b/owrx/storage.py @@ -91,7 +91,7 @@ class Storage(object): # Convert given file from BMP to PNG format using ImageMagick @staticmethod - def convertImage(self, inFile: str): + def convertImage(inFile: str): # Adds storage path if not inFile.startswith('/'): inFile = self.getFilePath(inFile)