From: Douglas Bagnall Date: Thu, 9 Mar 2017 01:55:32 +0000 (+1300) Subject: python sites/subnets: correctly spell variable name X-Git-Tag: tdb-1.3.13~585 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b7cd0f2843f8695c087dc542358ac6ea0016a1d9;p=thirdparty%2Fsamba.git python sites/subnets: correctly spell variable name Signed-off-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- diff --git a/python/samba/netcmd/sites.py b/python/samba/netcmd/sites.py index f0c792d90ee..d0b7b9f4e6a 100644 --- a/python/samba/netcmd/sites.py +++ b/python/samba/netcmd/sites.py @@ -209,7 +209,7 @@ class cmd_sites_subnet_set_site(Command): (subnetname, site_of_subnet, e)) print >> self.outf, ("Subnet %s shifted to site %s" % - (subnet_name, site_of_subnet)) + (subnetname, site_of_subnet)) class cmd_sites_subnet(SuperCommand):