Skip to content

Commit f552c73

Browse files
authored
Merge pull request #476 from dsurnin/stable-fix-validator-info
Change default path to handle network name
2 parents afddd37 + d346dc3 commit f552c73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .flake8

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[flake8]
2-
ignore = N801, N802, N803, N806, N813, C901, E501, F401
2+
ignore = N801, N802, N803, N806, N813, C901, E501, F401, E741
33
exclude =
44
# common places
55
.git,__pycache__,docs/source/conf.py,old,build,dist,

Diff for: scripts/validator-info

+1-1
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ def main():
552552

553553
statfile_group.add_argument(
554554
"--basedir", metavar="PATH",
555-
default=config.baseDir,
555+
default=os.path.join(config.baseDir, config.NETWORK_NAME),
556556
help=("Path to stats files")
557557
)
558558
# statfile_group.add_argument(

0 commit comments

Comments
 (0)