From b9e0db34348457ea7907996fab0a97f24a20e8d4 Mon Sep 17 00:00:00 2001 From: Joseph Mancuso Date: Tue, 22 Oct 2019 23:11:26 -0400 Subject: [PATCH] removed sanity print --- masonite/provider.py | 2 -- tests/listeners/test_exception_listener.py | 1 - 2 files changed, 3 deletions(-) diff --git a/masonite/provider.py b/masonite/provider.py index 512456f54..f56bdefb7 100644 --- a/masonite/provider.py +++ b/masonite/provider.py @@ -115,7 +115,5 @@ def publish_migrations(self, tag=None): else: publishing_items = self._publish_migrations - print('run pubslish migration', publishing_items) for from_location in publishing_items: - print(from_location) copy_migration(from_location) diff --git a/tests/listeners/test_exception_listener.py b/tests/listeners/test_exception_listener.py index 498ce48a0..ae21c4f91 100644 --- a/tests/listeners/test_exception_listener.py +++ b/tests/listeners/test_exception_listener.py @@ -22,7 +22,6 @@ def __init__(self, request: Request): self.request = request def handle(self, exception, file, line): - print(file, line) self.request.error_thrown = True