diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-23 07:58:37 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-23 07:58:37 +0300 |
commit | 189168b359063cfd1cc007204636568a1fdf783b (patch) | |
tree | bc74b1d4c16fe6c94c520aa6ffd8d9b8485d7e24 /pull | |
parent | README: update Docker Hub link (diff) | |
download | cgitize-189168b359063cfd1cc007204636568a1fdf783b.tar.gz cgitize-189168b359063cfd1cc007204636568a1fdf783b.zip |
pylint/pep8 fixes
Diffstat (limited to 'pull')
-rw-r--r-- | pull/cgit.py | 1 | ||||
-rw-r--r-- | pull/utils.py | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/pull/cgit.py b/pull/cgit.py index 663eebf..86a94ea 100644 --- a/pull/cgit.py +++ b/pull/cgit.py @@ -8,7 +8,6 @@ import logging import os import os.path import shutil -import socket from pull.utils import chdir, check_output, run diff --git a/pull/utils.py b/pull/utils.py index 6ffccd1..84337e8 100644 --- a/pull/utils.py +++ b/pull/utils.py @@ -10,10 +10,9 @@ import subprocess def check_output(*args, stdout=subprocess.PIPE, **kwargs): - result = subprocess.run(args, stdout=stdout, stderr=subprocess.STDOUT, - encoding='utf-8', **kwargs) try: - result.check_returncode() + result = subprocess.run(args, stdout=stdout, stderr=subprocess.STDOUT, + encoding='utf-8', check=True, **kwargs) if stdout != subprocess.DEVNULL: if result.stdout is None: logging.debug('%s', args) |