Mercurial > repos > rmarenco > hubarchivecreator
view __init__.py @ 29:7e8a8b732db3 draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 1a81ebd0ddea950b84af3fc830e9267a4814b29f
author | yating-l |
---|---|
date | Wed, 16 May 2018 18:04:20 -0400 |
parents | 25809f699cb3 |
children |
line wrap: on
line source
# Set default logging handler to avoid "No handler found" warnings. import logging import sys try: # Python 2.7+ from logging import NullHandler except ImportError: class NullHandler(logging.Handler): def emit(self, record): pass logging.getLogger(__name__).addHandler(NullHandler()) log_stdout = None log_stderr = None # TODO: Handle the Exception by dispatching the error depending on the (debug) mode #class Exception(Exception):