surfrdf
surfrdf copied to clipboard
Fix query reader: conversion of zero values
The _convert.py
method of the QueryReader used if value:
to check if a value is present. This fails, if the value evaluates to False, which is the case e.g. for the integer value 0. This pull request replaces this line by if value is not None: