Skip to content
Snippets Groups Projects
Commit ca4c2d67 authored by André's avatar André
Browse files

PluginManager: Fix string format

parent 4010161a
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ def from_manifest(cls, path):
shipped = is_shipped_plugin(path)
manifest = path / 'manifest.ini'
if not manifest.exists() and not manifest.is_dir():
raise ValueError('Not a plugin path: {path}')
raise ValueError(f'Not a plugin path: {path}')
conf = configparser.ConfigParser()
conf.remove_section('info')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment