Skip to content

Commit

Permalink
version 0.5.0
Browse files Browse the repository at this point in the history
- fix typo
- "stable" release
  • Loading branch information
elesiuta committed Jan 19, 2021
1 parent ace8b51 commit 306b872
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions baka.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import argparse
import datetime
import email
import io
import json
import os
import shlex
Expand Down Expand Up @@ -292,13 +291,13 @@ def main() -> int:
if verbosity in ["debug", "info"]:
proc_out = sys.stdout
if verbosity in ["debug", "info", "error"]:
proc_err = sys.stdout
proc_err = sys.stderr
proc = subprocess.run(cmd, stdout=proc_out, stderr=proc_err)
if capture_output:
if verbosity in ["debug", "info"]:
sys.stdout.buffer.write(proc.stdout)
if verbosity in ["debug", "info", "error"]:
sys.stdout.buffer.write(proc.stderr)
sys.stderr.buffer.write(proc.stderr)
print("\n")
command_output.append(">>> " + shlex.join(cmd))
command_output.append(proc.stdout.decode().strip())
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.4.9",
version="0.5.0",
description="Baka Admin's Kludge Assistant",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 306b872

Please sign in to comment.