diff options
| author | Volker Lendecke <vl@samba.org> | 2021-09-07 14:25:34 +0200 |
|---|---|---|
| committer | Jeremy Allison <jra@samba.org> | 2021-09-07 18:26:33 +0000 |
| commit | 6ebed6b505aebb58726322b7c4e7f736e02773ce (patch) | |
| tree | 7e7b534171573dd61ed9e9cbd25a1de8b3bc3bbe /python/samba | |
| parent | ba237d9403cf45bf71e5d943b92c15e9c494fb0f (diff) | |
| download | samba-6ebed6b505aebb58726322b7c4e7f736e02773ce.tar.gz samba-6ebed6b505aebb58726322b7c4e7f736e02773ce.tar.bz2 samba-6ebed6b505aebb58726322b7c4e7f736e02773ce.zip | |
samba-tool: Fix a typo
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'python/samba')
| -rw-r--r-- | python/samba/netcmd/dns.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/samba/netcmd/dns.py b/python/samba/netcmd/dns.py index e77a4de8162..c0f27808c46 100644 --- a/python/samba/netcmd/dns.py +++ b/python/samba/netcmd/dns.py @@ -1090,7 +1090,7 @@ class cmd_add_record(Command): if e.args[0] == werror.WERR_DNS_ERROR_NAME_DOES_NOT_EXIST: raise CommandError('Zone does not exist; record could not be added. zone[%s] name[%s]' % (zone, name)) if e.args[0] == werror.WERR_DNS_ERROR_RECORD_ALREADY_EXISTS: - raise CommandError('Record already exist; record could not be added. zone[%s] name[%s]' % (zone, name)) + raise CommandError('Record already exists; record could not be added. zone[%s] name[%s]' % (zone, name)) raise e self.outf.write('Record added successfully\n') |
