aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy/servo_tidy
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2023-03-28 09:42:35 +0200
committerMartin Robinson <mrobinson@igalia.com>2023-03-28 09:42:35 +0200
commit1613997d8704d67185be80ab5af07f4666e0d896 (patch)
treef58814095e29712315bd8c330119092b0691365d /python/tidy/servo_tidy
parentb4e381033d7743a9e418ad896ae549e187d82a78 (diff)
downloadservo-1613997d8704d67185be80ab5af07f4666e0d896.tar.gz
servo-1613997d8704d67185be80ab5af07f4666e0d896.zip
Remove a print statement mistakenly added in a previous change
This statement is totally unnecessary and interferes with the console commands which erase and rewrite the current tidy status.
Diffstat (limited to 'python/tidy/servo_tidy')
-rw-r--r--python/tidy/servo_tidy/tidy.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py
index 8426574887b..9cd704727ac 100644
--- a/python/tidy/servo_tidy/tidy.py
+++ b/python/tidy/servo_tidy/tidy.py
@@ -546,7 +546,6 @@ def check_rust(file_name, lines):
]
is_panic_not_allowed_rs_file = any([
glob.fnmatch.fnmatch(file_name, path) for path in PANIC_NOT_ALLOWED_PATHS])
- print(file_name)
prev_open_brace = False
multi_line_string = False