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
tomoscan
Commits
e8e138cf
Commit
e8e138cf
authored
Jul 31, 2020
by
payno
Browse files
[hdf5scan] fix scan path when loaded from dictionnary
parent
3f9248e2
Changes
1
Show whitespace changes
Inline
Side-by-side
tomoscan/esrf/hdf5scan.py
View file @
e8e138cf
...
...
@@ -310,8 +310,13 @@ class HDF5TomoScan(TomoScanBase):
raise
ValueError
(
'No hdf5 entry specified'
)
assert
self
.
DICT_PATH_KEY
in
data
self
.
path
=
data
[
self
.
DICT_PATH_KEY
]
self
.
_entry
=
data
[
self
.
_DICT_ENTRY_KEY
]
self
.
master_file
=
self
.
get_master_file
(
data
[
self
.
DICT_PATH_KEY
])
if
os
.
path
.
isdir
(
data
[
self
.
DICT_PATH_KEY
]):
self
.
path
=
data
[
self
.
DICT_PATH_KEY
]
else
:
self
.
path
=
os
.
path
.
dirname
(
data
[
self
.
DICT_PATH_KEY
])
return
self
@
property
...
...
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