Fixing common security vulnerabilities
Correcting try-except-pass usage, removing assert improper usage.
Change-Id: Ic24c7e8a8f579c6dfd4a9740eff11ab1561af5e1
Signed-off-by: aticig <gulsum.atici@canonical.com>
(cherry picked from commit d3b582a7268d90c072bb7fbe10a25c80851f3c1e)
diff --git a/osm_common/__init__.py b/osm_common/__init__.py
index 8bc5507..c4c32da 100644
--- a/osm_common/__init__.py
+++ b/osm_common/__init__.py
@@ -14,6 +14,7 @@
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+import logging
version = "7.0.0.post4"
date_version = "2019-01-21"
@@ -23,5 +24,6 @@
from pkg_resources import get_distribution
version = get_distribution("osm_common").version
-except Exception:
- pass
+
+except Exception as init_error:
+ logging.exception(f"{init_error} occured while getting the common version")