Added a check to the oblique plugin
Checks if lines can be split.
This commit is contained in:
parent
b279f96af0
commit
3c9e6a6736
|
@ -19,6 +19,9 @@ def update_commands(force=False):
|
|||
if not line.strip():
|
||||
continue
|
||||
|
||||
if line.strip().find(" ") == -1:
|
||||
continue
|
||||
|
||||
name, url = line.strip().split(None, 1)
|
||||
commands[name] = url
|
||||
|
||||
|
|
Loading…
Reference in New Issue