1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-18 08:23:51 +03:00

python:tests: Fix f-strings

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton
2023-05-25 14:14:11 +12:00
committed by Andrew Bartlett
parent 5dfb090d9c
commit 63c228f89f

View File

@@ -311,9 +311,9 @@ def check_file_text():
elif c[0] == 'C':
others.append(x)
print("normal control characters {controls}")
print("format characters {formats}")
print("other control characters {others}")
print(f"normal control characters {controls}")
print(f"format characters {formats}")
print(f"other control characters {others}")
if __name__ == '__main__':