Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
slapos
Commits
b29e0c06
Commit
b29e0c06
authored
Jul 09, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
format-json: display filename and error location on error
parent
5c417099
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
format-json
format-json
+1
-1
No files found.
format-json
View file @
b29e0c06
...
...
@@ -25,7 +25,7 @@ def main():
obj
=
json
.
load
(
infile
,
object_pairs_hook
=
collections
.
OrderedDict
)
except
ValueError
as
e
:
exit_code
=
1
print
(
e
,
file
=
sys
.
stderr
)
print
(
f'
{
f
}
:
{
e
.
lineno
}
'
,
e
,
file
=
sys
.
stderr
)
else
:
with
open
(
f
,
'w'
)
as
outfile
:
json
.
dump
(
obj
,
outfile
,
ensure_ascii
=
False
,
sort_keys
=
False
,
indent
=
2
,
separators
=
(
','
,
': '
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment