Remove old logging

This commit is contained in:
Florian Bruhin 2014-04-10 09:40:16 +02:00
parent 60cb5ad85d
commit 2442cf11ab

View File

@ -17,7 +17,6 @@
"""Module containing commandline parsers ( SearchParser and CommandParser)."""
import logging
import shlex
from PyQt5.QtCore import pyqtSlot, pyqtSignal, QObject
@ -139,7 +138,6 @@ class CommandParser:
"""
parts = text.strip().split(maxsplit=1)
logging.debug("parts in parser: {}".format(parts))
if not parts:
raise NoSuchCommandError("No command given")
cmdstr = parts[0]