Skip to content

Commit

Permalink
version 0.5.2
Browse files Browse the repository at this point in the history
- used yellow by mistake (for warnings), use green
  • Loading branch information
elesiuta committed Jan 19, 2021
1 parent 4d09aa0 commit 0b0e4eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion baka.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def main() -> int:
if verbosity in ["debug"]:
print("\033[94m%s\033[0m" % shlex.join(cmd))
if "interactive" in config.jobs[args.job] and config.jobs[args.job]["interactive"]:
response = input("\033[93mContinue (yes/no/skip)?\033[0m ")
response = input("\033[92mContinue (yes/no/skip)?\033[0m ")
if response.strip().lower().startswith("y"):
pass
elif response.strip().lower().startswith("n"):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="bakabakabaka",
version="0.5.1",
version="0.5.2",
description="Baka Admin's Kludge Assistant",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 0b0e4eb

Please sign in to comment.