diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2019-01-03 15:33:39 -0500 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2019-01-03 15:33:39 -0500 |
| commit | 34b04f487e0dfcdc8766cb265e10dd3f58217f30 (patch) | |
| tree | 6ccc49becfb5802bf982c9dc9978631283bc6c57 /python/__init__.py | |
| parent | ac204fce33045803f27b438a2ffd3930d96fc52b (diff) | |
lots of spelling / typo fixes
Diffstat (limited to 'python/__init__.py')
| -rw-r--r-- | python/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/__init__.py b/python/__init__.py index 6e30520b..6f705b07 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -164,7 +164,7 @@ _plugin_api_name = "python2" class PluginManagerLoadPluginCallback(object): - """Callback for BNLoadPluginForApi("python2", ...), dynamicly loads python plugins.""" + """Callback for BNLoadPluginForApi("python2", ...), dynamically loads python plugins.""" def __init__(self): self.cb = ctypes.CFUNCTYPE( ctypes.c_bool, @@ -178,7 +178,7 @@ class PluginManagerLoadPluginCallback(object): plugin = repo[plugin_path] if plugin.api != _plugin_api_name: - raise ValueError("Plugin api name is not " + _plugin_api_name) + raise ValueError("Plugin API name is not " + _plugin_api_name) if not plugin.installed: plugin.installed = True |
