Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
57317c31
Commit
57317c31
authored
Jun 20, 2013
by
Roman Donchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use log formatting as intended.
parent
3e2c4563
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
xls-report.py
modules/ts/misc/xls-report.py
+3
-3
No files found.
modules/ts/misc/xls-report.py
View file @
57317c31
...
...
@@ -79,7 +79,7 @@ def main():
sheet_conf
=
ast
.
literal_eval
(
sheet_conf_file
.
read
())
except
Exception
:
sheet_conf
=
{}
logging
.
debug
(
'no sheet.conf for
{}'
.
format
(
sheet_path
)
)
logging
.
debug
(
'no sheet.conf for
%
s'
,
sheet_path
)
sheet_conf
=
dict
(
global_conf
.
items
()
+
sheet_conf
.
items
())
...
...
@@ -90,14 +90,14 @@ def main():
config_names
=
[
p
for
p
in
os
.
listdir
(
sheet_path
)
if
os
.
path
.
isdir
(
os
.
path
.
join
(
sheet_path
,
p
))]
except
Exception
as
e
:
logging
.
warning
(
e
)
logging
.
warning
(
'error while determining configuration names for
%
s:
%
s'
,
sheet_path
,
e
)
continue
collection
=
{}
for
configuration
,
configuration_path
in
\
[(
c
,
os
.
path
.
join
(
sheet_path
,
c
))
for
c
in
config_names
]:
logging
.
info
(
'processing
{}'
.
format
(
configuration_path
)
)
logging
.
info
(
'processing
%
s'
,
configuration_path
)
for
xml_fullname
in
glob
(
os
.
path
.
join
(
configuration_path
,
'*.xml'
)):
collect_xml
(
collection
,
configuration
,
xml_fullname
)
...
...
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