Skip to content

Commit

Permalink
Notebooks: fix saving custom title on py3
Browse files Browse the repository at this point in the history
  • Loading branch information
tritemio committed Jun 24, 2015
1 parent 51c4a87 commit e8e1ce1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion notebooks/Convert ns-ALEX HT3 files to Photon-HDF5.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,8 @@
"pq_group = h5file.create_group('/user', 'picoquant', title=b'Full metadata from original .HT3 file.')\n",
"for key in meta: \n",
" if np.size(meta[key]) > 0:\n",
" h5file.create_table(pq_group, key, obj=meta[key], title=phc.hdf5._EMPTY)"
" tabl = h5file.create_table(pq_group, key, obj=meta[key])\n",
" tabl.title = phc.hdf5._EMPTY # see https://github.com/Photon-HDF5/phconvert/issues/4"
]
},
{
Expand Down

0 comments on commit e8e1ce1

Please sign in to comment.