summaryrefslogtreecommitdiff
path: root/silx/gui/dialog/DataFileDialog.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/gui/dialog/DataFileDialog.py')
-rw-r--r--silx/gui/dialog/DataFileDialog.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/silx/gui/dialog/DataFileDialog.py b/silx/gui/dialog/DataFileDialog.py
index d2d76a3..84605d9 100644
--- a/silx/gui/dialog/DataFileDialog.py
+++ b/silx/gui/dialog/DataFileDialog.py
@@ -1,7 +1,7 @@
# coding: utf-8
# /*##########################################################################
#
-# Copyright (c) 2016-2018 European Synchrotron Radiation Facility
+# Copyright (c) 2016-2020 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -210,7 +210,7 @@ class DataFileDialog(AbstractDataFileDialog):
.. code-block:: python
url = dialog.selectedDataUrl()
- with h5py.File(url.file_path()) as h5:
+ with h5py.File(url.file_path(), mode="r") as h5:
data = h5[url.data_path()]
"""