Disable the check of the release notes
[osm/RO.git] / NG-RO / osm_ng_ro / __init__.py
index 2995bad..cce1038 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 ##
+import logging
+
+from pkg_resources import get_distribution
 
 version = "8.0.1.post0"
 version_date = "2020-06-29"
 
 # Obtain installed package version. Ignore if error, e.g. pkg_resources not installed
 try:
-    from pkg_resources import get_distribution
-
     version = get_distribution("osm_ng_ro").version
-except Exception:
-    pass
+except Exception as error:
+    logging.warning(f"{error} occured while getting the ro version")