Skip to content
Closed
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 git_remote option in compile.py
`git_remote` option is one of "scm" options instead of
"config" options.
  • Loading branch information
zhaozhixu committed Jun 7, 2025
commit 8d4fc2df58c5d5d164350ee1a010e7d3c956169b
2 changes: 1 addition & 1 deletion pyperformance/compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ def getint(section, key, default=None):
# [scm]
conf.repo_dir = getfile('scm', 'repo_dir')
conf.update = getboolean('scm', 'update', True)
conf.git_remote = getstr('config', 'git_remote', default='remotes/origin')
conf.git_remote = getstr('scm', 'git_remote', default='remotes/origin')

# [compile]
conf.directory = getfile('compile', 'bench_dir')
Expand Down
Loading