Skip to content

Fix docstring in cmd module #810

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 22, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix docstring in cmd module
  • Loading branch information
dschaller authored Nov 20, 2018
commit d6aa5890a6e9683275d28129e956e7fb7b7a64bd
2 changes: 1 addition & 1 deletion git/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def handle_process_output(process, stdout_handler, stderr_handler,
Set it to False if `universal_newline == True` (then streams are in text-mode)
or if decoding must happen later (i.e. for Diffs).
"""
# Use 2 "pupm" threads and wait for both to finish.
# Use 2 "pump" threads and wait for both to finish.
def pump_stream(cmdline, name, stream, is_decode, handler):
try:
for line in stream:
Expand Down