summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorDavid Disseldorp <ddiss@samba.org>2013-04-18 10:32:44 +0200
committerAndreas Schneider <asn@cryptomilk.org>2013-04-18 12:40:33 +0200
commitbb7c6a0bd0d194e62d2c861edaff1dd6a0e071f6 (patch)
tree7775fd6ceeddd28d29939ce608e771f484acbe6b /python
parent406450d44e9c7a31b9db9cdb16c0b404f133d006 (diff)
downloadsamba-bb7c6a0bd0d194e62d2c861edaff1dd6a0e071f6.tar.gz
samba-bb7c6a0bd0d194e62d2c861edaff1dd6a0e071f6.tar.bz2
samba-bb7c6a0bd0d194e62d2c861edaff1dd6a0e071f6.zip
netcmd/dns: fix typo
Fix provided by Tobias Florek. Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Thu Apr 18 12:40:33 CEST 2013 on sn-devel-104
Diffstat (limited to 'python')
-rw-r--r--python/samba/netcmd/dns.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/samba/netcmd/dns.py b/python/samba/netcmd/dns.py
index c00d17ad72..309951d2d8 100644
--- a/python/samba/netcmd/dns.py
+++ b/python/samba/netcmd/dns.py
@@ -1115,7 +1115,7 @@ class cmd_update_record(Command):
name,
add_rec_buf,
del_rec_buf)
- self.outf.write('Record updated succefully\n')
+ self.outf.write('Record updated successfully\n')
class cmd_delete_record(Command):
@@ -1167,7 +1167,7 @@ class cmd_delete_record(Command):
name,
None,
del_rec_buf)
- self.outf.write('Record deleted succefully\n')
+ self.outf.write('Record deleted successfully\n')
class cmd_dns(SuperCommand):