From 4a6ed3dfe2b8d7dd0a0503a3b7e7ff457d49118d Mon Sep 17 00:00:00 2001
From: Martijn Vermaat <martijn@vermaat.name>
Date: Wed, 14 Oct 2015 17:32:16 +0200
Subject: [PATCH] Remove debug statement

---
 mutalyzer/db/__init__.py | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/mutalyzer/db/__init__.py b/mutalyzer/db/__init__.py
index 8e66ddbe..fe634d02 100644
--- a/mutalyzer/db/__init__.py
+++ b/mutalyzer/db/__init__.py
@@ -36,14 +36,6 @@ def create_engine():
         # actually using the database will fail.
         return
 
-    # TODO: Remove when refactoring tests is complete. We should check that
-    # this is never reached with 'sqlite://' from the default_settings or with
-    # a value from MUTALYZER_SETTINGS during tests. The uri(s) configured in
-    # the tests should be used instead.
-    # This also makes sure that tests can never accidentally use the database
-    # without having it declared as a needed fixture.
-    print '!!!!!!!!!!!!! Creating session for', settings.DATABASE_URI
-
     url = make_url(settings.DATABASE_URI)
     options = {}
 
-- 
GitLab