Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tomotools
Nabu
Commits
24ea6ed5
Commit
24ea6ed5
authored
Apr 30, 2021
by
Pierre Paleo
Browse files
Fix logger.warning message
parent
21ec88d2
Pipeline
#46183
passed with stage
in 5 minutes and 32 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
nabu/estimation/cor_sino.py
View file @
24ea6ed5
...
...
@@ -114,7 +114,7 @@ class SinoCor(object):
self
.
cor_abs
=
(
imax
+
window_width
-
1.0
)
/
2
self
.
cor_rel
=
self
.
cor_abs
-
self
.
sx
/
2.0
-
1
if
imax
<
1
:
self
.
logger
.
warning
(
"sliding width "
,
window_width
,
" seems too large!"
)
self
.
logger
.
warning
(
str
(
"sliding width "
,
window_width
,
" seems too large!"
)
)
self
.
rcor_abs
=
round
(
self
.
cor_abs
)
return
self
.
rcor_abs
...
...
Write
Preview
Supports
Markdown
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