diff options
author | David Pursehouse <dpursehouse@collab.net> | 2020-02-13 13:17:03 +0900 |
---|---|---|
committer | David Pursehouse <dpursehouse@collab.net> | 2020-02-13 04:54:10 +0000 |
commit | 3cda50a41b1a950d70be8887c5efe3735586d1bb (patch) | |
tree | 35c40d0981784c2a1facb4a3fd62d99d53d8ae2f /pager.py | |
parent | afbccdb11e3aad56ba9b07f4321ec4752a0edb93 (diff) | |
download | git-repo-3cda50a41b1a950d70be8887c5efe3735586d1bb.tar.gz |
pyflakes: Fix remaining "E501 line too long" warnings
We increased the max line length to 100 columns which got rid of
the majority of these warnings, but there were still a few lines
that exceeded 100 columns.
Change-Id: Ib3372868ca2297f83073a14f91c8ae3df9d0d0e6
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254699
Tested-by: David Pursehouse <dpursehouse@collab.net>
Reviewed-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'pager.py')
-rw-r--r-- | pager.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -59,7 +59,8 @@ def _PipePager(pager): | |||
59 | global pager_process, old_stdout, old_stderr | 59 | global pager_process, old_stdout, old_stderr |
60 | assert pager_process is None, "Only one active pager process at a time" | 60 | assert pager_process is None, "Only one active pager process at a time" |
61 | # Create pager process, piping stdout/err into its stdin | 61 | # Create pager process, piping stdout/err into its stdin |
62 | pager_process = subprocess.Popen([pager], stdin=subprocess.PIPE, stdout=sys.stdout, stderr=sys.stderr) | 62 | pager_process = subprocess.Popen([pager], stdin=subprocess.PIPE, stdout=sys.stdout, |
63 | stderr=sys.stderr) | ||
63 | old_stdout = sys.stdout | 64 | old_stdout = sys.stdout |
64 | old_stderr = sys.stderr | 65 | old_stderr = sys.stderr |
65 | sys.stdout = pager_process.stdin | 66 | sys.stdout = pager_process.stdin |