From c57441f9d922069df6dd31e0f1d2700a45c9d6d7 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Thu, 10 Oct 2019 21:52:04 +0100 Subject: [PATCH] ud-generate: remove a trailing semi-colon Signed-off-by: Adam D. Barratt --- ud-generate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.20.1