From 67fc0543642def003e355e073e254de67dfb234d Mon Sep 17 00:00:00 2001 From: Infinyte Solutions Date: Tue, 6 Jan 2026 13:07:23 -0500 Subject: [PATCH] Refactor: replace url() with path() for Django routes Update URL generation to use path() instead of url(), aligning with Django 4.x where url() is deprecated. --- pluginInstaller/pluginInstaller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pluginInstaller/pluginInstaller.py b/pluginInstaller/pluginInstaller.py index 9b0b98b09..1fd41e2e2 100644 --- a/pluginInstaller/pluginInstaller.py +++ b/pluginInstaller/pluginInstaller.py @@ -711,4 +711,4 @@ def main(): pluginInstaller.removePlugin(args.pluginName) if __name__ == "__main__": - main() \ No newline at end of file + main()