diff options
| author | Joseph Sutton <josephsutton@catalyst.net.nz> | 2023-10-02 16:03:59 +1300 |
|---|---|---|
| committer | Andrew Bartlett <abartlet@samba.org> | 2023-10-25 22:23:37 +0000 |
| commit | 17983427352fa28f7b5d17ccc84fede73b6e7e22 (patch) | |
| tree | a7ac20a844bf6580d437675811991be3bc15406f /python/samba/netcmd | |
| parent | b4de22a74d1a124af45ce0ec336b61b04a73ed97 (diff) | |
| download | samba-17983427352fa28f7b5d17ccc84fede73b6e7e22.tar.gz samba-17983427352fa28f7b5d17ccc84fede73b6e7e22.tar.bz2 samba-17983427352fa28f7b5d17ccc84fede73b6e7e22.zip | |
python: Remove unnecessary f‐strings
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'python/samba/netcmd')
| -rw-r--r-- | python/samba/netcmd/delegation.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/samba/netcmd/delegation.py b/python/samba/netcmd/delegation.py index 35a91aca458..840be2088a3 100644 --- a/python/samba/netcmd/delegation.py +++ b/python/samba/netcmd/delegation.py @@ -128,8 +128,8 @@ class cmd_delegation_show(Command): if not ignore: if first: - self.outf.write(f' Principals that may delegate to this ' - f'account:\n') + self.outf.write(' Principals that may delegate to this ' + 'account:\n') first = False self.outf.write(f'msDS-AllowedToActOnBehalfOfOtherIdentity: ' |
