Skip to content
Snippets Groups Projects
Commit d36abe77 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Fixes import error on setup.py

parent c2ece561
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,8 @@ try:
from km3pipe.logger import logging
except ImportError:
pass
else:
log = logging.getLogger(__name__)
__author__ = "Tamas Gal"
__copyright__ = ("Copyright 2014, Tamas Gal and the KM3NeT collaboration "
......@@ -27,7 +29,6 @@ __maintainer__ = "Tamas Gal"
__email__ = "tgal@km3net.de"
__status__ = "Development"
log = logging.getLogger(__name__)
BUFFER_SIZE = 1024
valid_tag = re.compile(r"^(IO|RC|TRG)_.*$")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment