diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-09-16 21:22:17 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-09-16 21:22:17 +0100 |
commit | ff0df95cd4f1d99a705c95c85f74d6374b98ba77 (patch) | |
tree | c034ebf7015def3fdfeb8f02fc0ae7e7191811c2 | |
parent | d707d7b484f77392d27342558c1012635148d491 (diff) | |
download | sos-ff0df95cd4f1d99a705c95c85f74d6374b98ba77.tar.gz |
[sosreport] fix whitespace errors
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/sosreport.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sos/sosreport.py b/sos/sosreport.py index 673173ee..b33a0066 100644 --- a/sos/sosreport.py +++ b/sos/sosreport.py @@ -53,6 +53,7 @@ from six import print_ # file system errors that should terminate a run fatal_fs_errors = (errno.ENOSPC, errno.EROFS) + def _format_list(first_line, items, indent=False): lines = [] line = first_line @@ -70,6 +71,7 @@ def _format_list(first_line, items, indent=False): lines.append(line) return lines + class TempFileUtil(object): def __init__(self, tmp_dir): |