diff --git a/taiga/projects/history/migrations/0007_set_bloked_note_and_is_blocked_in_snapshots.py b/taiga/projects/history/migrations/0007_set_bloked_note_and_is_blocked_in_snapshots.py index dafe32ed..a1789405 100644 --- a/taiga/projects/history/migrations/0007_set_bloked_note_and_is_blocked_in_snapshots.py +++ b/taiga/projects/history/migrations/0007_set_bloked_note_and_is_blocked_in_snapshots.py @@ -15,7 +15,6 @@ def set_current_values_of_blocked_note_and_is_blocked_to_the_last_snapshot(apps, model = get_model_from_key(history_entry.key) pk = get_pk_from_key(history_entry.key) try: - print("Fixing history_entry: ", history_entry.created_at) obj = model.objects.get(pk=pk) save = False if hasattr(obj, "is_blocked") and "is_blocked" not in history_entry.snapshot: @@ -30,7 +29,7 @@ def set_current_values_of_blocked_note_and_is_blocked_to_the_last_snapshot(apps, history_entry.save() except ObjectDoesNotExist as e: - print("Ignoring {}".format(history_entry.pk)) + pass class Migration(migrations.Migration): diff --git a/taiga/projects/issues/migrations/0003_auto_20141210_1108.py b/taiga/projects/issues/migrations/0003_auto_20141210_1108.py index b8ee567c..ebc22056 100644 --- a/taiga/projects/issues/migrations/0003_auto_20141210_1108.py +++ b/taiga/projects/issues/migrations/0003_auto_20141210_1108.py @@ -21,7 +21,6 @@ def _fix_tags_model(tags_model): def fix_tags(apps, schema_editor): - print("Fixing user issue tags") _fix_tags_model(Issue) diff --git a/taiga/projects/migrations/0013_auto_20141210_1040.py b/taiga/projects/migrations/0013_auto_20141210_1040.py index 93c093bc..68bbb4f5 100644 --- a/taiga/projects/migrations/0013_auto_20141210_1040.py +++ b/taiga/projects/migrations/0013_auto_20141210_1040.py @@ -21,7 +21,6 @@ def _fix_tags_model(tags_model): def fix_tags(apps, schema_editor): - print("Fixing project tags") _fix_tags_model(Project) diff --git a/taiga/projects/tasks/migrations/0004_auto_20141210_1107.py b/taiga/projects/tasks/migrations/0004_auto_20141210_1107.py index b4c093f3..33d7c053 100644 --- a/taiga/projects/tasks/migrations/0004_auto_20141210_1107.py +++ b/taiga/projects/tasks/migrations/0004_auto_20141210_1107.py @@ -21,7 +21,6 @@ def _fix_tags_model(tags_model): def fix_tags(apps, schema_editor): - print("Fixing user task tags") _fix_tags_model(Task) diff --git a/taiga/projects/userstories/migrations/0008_auto_20141210_1107.py b/taiga/projects/userstories/migrations/0008_auto_20141210_1107.py index 8c4b6c8d..36e032fd 100644 --- a/taiga/projects/userstories/migrations/0008_auto_20141210_1107.py +++ b/taiga/projects/userstories/migrations/0008_auto_20141210_1107.py @@ -21,7 +21,6 @@ def _fix_tags_model(tags_model): def fix_tags(apps, schema_editor): - print("Fixing user story tags") _fix_tags_model(UserStory) diff --git a/tests/utils.py b/tests/utils.py index 96320972..8245e2dc 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -49,8 +49,8 @@ def _helper_test_http_method_responses(client, method, url, data, users, after_e response = getattr(client, method)(url, data, content_type=content_type) else: response = getattr(client, method)(url) - if response.status_code >= 400: - print("Response content:", response.content) + #if response.status_code >= 400: + # print("Response content:", response.content) results.append(response)