mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
refactor: add space to error
This commit is contained in:
parent
3a2832e9a3
commit
1a254a5441
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ from typing import (
|
||||||
from urllib.error import HTTPError
|
from urllib.error import HTTPError
|
||||||
from urllib.request import urlopen
|
from urllib.request import urlopen
|
||||||
|
|
||||||
__version__ = "23.8a1-14-g3201e56-dev"
|
__version__ = "23.8a1-15-g3a2832e-dev"
|
||||||
|
|
||||||
|
|
||||||
class Spinner:
|
class Spinner:
|
||||||
|
@ -689,7 +689,7 @@ class KVAppendAction(Action):
|
||||||
d = {k: v}
|
d = {k: v}
|
||||||
except ValueError:
|
except ValueError:
|
||||||
err_quit(
|
err_quit(
|
||||||
f"failed to parse key-value for {self.dest}"
|
f"failed to parse key-value for {self.dest} "
|
||||||
f'"{a.bold}{values}{a.end}" as k:v'
|
f'"{a.bold}{values}{a.end}" as k:v'
|
||||||
)
|
)
|
||||||
items = getattr(namespace, self.dest)
|
items = getattr(namespace, self.dest)
|
||||||
|
|
Loading…
Reference in a new issue