Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tomotools
tomoscan
Commits
56e0c227
Commit
56e0c227
authored
Jul 31, 2020
by
payno
Browse files
[hdf5scan] fix scan path when loaded from dictionnary
parent
f692d7d0
Pipeline
#30783
passed with stages
in 2 minutes and 5 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
tomoscan/esrf/hdf5scan.py
View file @
56e0c227
...
...
@@ -301,9 +301,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
(
self
.
path
)
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
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