File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1918,16 +1918,16 @@ def rev_list(
1918
1918
'[master ...] Moo'
1919
1919
1920
1920
>>> git.rev_list(commit="HEAD", max_count=1)
1921
- ''
1921
+ '... '
1922
1922
1923
1923
>>> git.rev_list(commit="HEAD", path=".", max_count=1, header=True)
1924
- ''
1924
+ '... '
1925
1925
1926
1926
>>> git.rev_list(commit="origin..HEAD", max_count=1, _all=True, header=True)
1927
- ''
1927
+ '... '
1928
1928
1929
1929
>>> git.rev_list(commit="origin..HEAD", max_count=1, header=True)
1930
- ''
1930
+ '... '
1931
1931
"""
1932
1932
required_flags : list [str ] = []
1933
1933
path_flags : list [str ] = []
@@ -1976,7 +1976,7 @@ def rev_list(
1976
1976
(max_parents , "--max-parents" ),
1977
1977
]:
1978
1978
if int_flag is not None :
1979
- local_flags .extend ([int_shell_flag , str (int_shell_flag )])
1979
+ local_flags .extend ([int_shell_flag , str (int_flag )])
1980
1980
1981
1981
for flag , shell_flag in [
1982
1982
# Limiting output
You can’t perform that action at this time.
0 commit comments