ud-generate: remove a trailing semi-colon
authorAdam D. Barratt <adam@adam-barratt.org.uk>
Thu, 10 Oct 2019 20:52:04 +0000 (21:52 +0100)
committerAdam D. Barratt <adam@adam-barratt.org.uk>
Fri, 11 Oct 2019 16:23:04 +0000 (17:23 +0100)
Signed-off-by: Adam D. Barratt <adam@adam-barratt.org.uk>
ud-generate

index 770db6a..dacd0d0 100755 (executable)
@@ -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)