Browse Source

fixed warning throwing in log

tanja 3 years ago
parent
commit
44e8f5fd82
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cdplib/log.py

+ 1 - 1
cdplib/log.py

@@ -127,7 +127,7 @@ class Log():
         '''
         self._logger.warning(message)
 
-        raise warnings.warn(message)
+        warnings.warn(message)
         
     def log_and_raise_warning(self, message):
         '''