Skip to content

Commit 8d4fc2d

Browse files
committed
Fix git_remote option in compile.py
`git_remote` option is one of "scm" options instead of "config" options.
1 parent ec9e291 commit 8d4fc2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyperformance/compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ def getint(section, key, default=None):
797797
# [scm]
798798
conf.repo_dir = getfile('scm', 'repo_dir')
799799
conf.update = getboolean('scm', 'update', True)
800-
conf.git_remote = getstr('config', 'git_remote', default='remotes/origin')
800+
conf.git_remote = getstr('scm', 'git_remote', default='remotes/origin')
801801

802802
# [compile]
803803
conf.directory = getfile('compile', 'bench_dir')

0 commit comments

Comments
 (0)