mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-12 20:23:15 -06:00
whoooops
This commit is contained in:
parent
2dddbf31af
commit
b9415949c8
1 changed files with 3 additions and 3 deletions
|
@ -52,7 +52,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.5a1-14-g49164f8"
|
__version__ = "23.5a1-16-g2dddbf3"
|
||||||
|
|
||||||
|
|
||||||
class Config:
|
class Config:
|
||||||
|
@ -1169,8 +1169,8 @@ class Viv:
|
||||||
if not (args.bin and args.output):
|
if not (args.bin and args.output):
|
||||||
error("please specify an explicit -b/--bin and -o/--output", code=1)
|
error("please specify an explicit -b/--bin and -o/--output", code=1)
|
||||||
|
|
||||||
args.bin = bin
|
bin = args.bin
|
||||||
args.output = output
|
output = args.output
|
||||||
|
|
||||||
if output.is_file():
|
if output.is_file():
|
||||||
error(f"{output} already exists...exiting", code=1)
|
error(f"{output} already exists...exiting", code=1)
|
||||||
|
|
Loading…
Reference in a new issue