From: Adam D. Barratt Date: Thu, 10 Oct 2019 20:52:04 +0000 (+0100) Subject: ud-generate: remove a trailing semi-colon X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=commitdiff_plain;h=c57441f9d922069df6dd31e0f1d2700a45c9d6d7 ud-generate: remove a trailing semi-colon Signed-off-by: Adam D. Barratt --- diff --git a/ud-generate b/ud-generate index 770db6a..dacd0d0 100755 --- a/ud-generate +++ b/ud-generate @@ -1330,7 +1330,7 @@ def generate_host(host, global_dir, all_accounts, all_hosts, ssh_userkeys): v = entry.split('=',1) if v[0] != 'GITOLITE' or len(v) != 2: continue options = v[1].split(',') - group = options.pop(0); + group = options.pop(0) gitolite_accounts = filter(lambda x: IsInGroup(x, [group], current_host), all_accounts) if 'nohosts' not in options: gitolite_hosts = filter(lambda x: GitoliteExportHosts.match(x[1]["hostname"][0]), all_hosts)