We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InaSAFE returns a timestamp (see https://github.com/AIFDR/inasafe/blob/master/safe/engine/core.py#L99) and this timestamp has colon that are crashing the keyword parser.
As a workaround I commented this out locally in my InaSAFE package:
--- a/safe/engine/core.py +++ b/safe/engine/core.py @@ -96,7 +96,7 @@ def calculate_impact(layers, impact_fcn): F.keywords['%s_source' % cat] = source F.keywords['elapsed_time'] = elapsed_time_sec - F.keywords['time_stamp'] = time_stamp[:19] # remove decimal part + #F.keywords['time_stamp'] = time_stamp[:19] # remove decimal part F.keywords['host_name'] = host_name F.keywords['user'] = user
but it should be handled directly in safe-geonode
The text was updated successfully, but these errors were encountered:
No branches or pull requests
InaSAFE returns a timestamp (see https://github.com/AIFDR/inasafe/blob/master/safe/engine/core.py#L99) and this timestamp has colon that are crashing the keyword parser.
As a workaround I commented this out locally in my InaSAFE package:
but it should be handled directly in safe-geonode
The text was updated successfully, but these errors were encountered: