Get error when reading NLLOC hyp file

Dear All
Hello

when i'm trying to read a hyp file (one from nlloc package sample) via
read_events module using obspy, i get the following errors:

ValueError Traceback (most recent call
last)<ipython-input-3-3f0bbbd250b3> in <module>()
----> 1 obspy.read_events('vinti.19950421.080259.grid0.loc.hyp')
<decorator-gen-200> in read_events(pathname_or_url, format, **kwargs)
/usr/lib/python2.7/site-packages/obspy/core/util/decorator.pyc in
_map_example_filename(func, *args, **kwargs)
    287 except IOError:
    288 pass
--> 289 return func(*args, **kwargs)
    290 return _map_example_filename
    291
/usr/lib/python2.7/site-packages/obspy/core/event/catalog.pyc in
read_events(pathname_or_url, format, **kwargs)
    836 raise IOError(2, "No such file or directory", pathname)
    837
--> 838 catalog = _read(pathnames[0], format, **kwargs)
    839 if len(pathnames) > 1:
    840 for filename in pathnames[1:]:
<decorator-gen-201> in _read(filename, format, **kwargs)
/usr/lib/python2.7/site-packages/obspy/core/util/decorator.pyc in
uncompress_file(func, filename, *args, **kwargs)
    197 else:
    198 # no compressions
--> 199 result = func(filename, *args, **kwargs)
    200 return result
    201
/usr/lib/python2.7/site-packages/obspy/core/event/catalog.pyc in
_read(filename, format, **kwargs)
    849 """
    850 catalog, format = _read_from_plugin('event', filename,
format=format,
--> 851 **kwargs)
    852 for event in catalog:
    853 event._format = format
/usr/lib/python2.7/site-packages/obspy/core/util/base.pyc in
_read_from_plugin(plugin_type, filename, format, **kwargs)
    457 raise TypeError(msg % (format_ep.name, ', '.join(eps)))
    458 # read
--> 459 list_obj = read_format(filename, **kwargs)
    460 return list_obj, format_ep.name
    461
/usr/lib/python2.7/site-packages/obspy/io/nlloc/core.pyc in
read_nlloc_hyp(filename, coordinate_converter, picks, **kwargs)
    137 line = line.rstrip().split('"')[1]
    138 signature, version, date, time = line.rsplit(" ", 3)
--> 139 creation_time = UTCDateTime().strptime(date + time,
str("%d%b%Y%Hh%Mm%S"))
    140
    141 # maximum likelihood origin location info line
/usr/lib/python2.7/site-packages/obspy/core/utcdatetime.pyc in
strptime(self, date_string, format)
   1150 :meth:`~datetime.datetime.strptime()` for more information.
   1151 """
-> 1152 return
UTCDateTime(datetime.datetime.strptime(date_string, format))
   1153
   1154 def timetz(self):
/usr/lib/python2.7/_strptime.pyc in _strptime(data_string, format)
    323 if not found:
    324 raise ValueError("time data %r does not match format %r" %
--> 325 (data_string, format))
    326 if len(data_string) != found.end():
    327 raise ValueError("unconverted data remains: %s" %
ValueError: time data 'run:06Apr201608h48m55' does not match format
'%d%b%Y%Hh%Mm%S'

Any idea?

Regards

Please open an issue on Github and also post the contents of the .hyp
file there.

cheers,
T