Compare commits

..

No commits in common. "67bf25a0a0cb4b10540786fc74afb329c5cc1d9f" and "327ca01f3af39015d920b0908af148e4cc5ab560" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@ def get_sites(cfg: Path) -> Generator[Tuple[Path, str]]:
config_part = _remove_comments(c[1]) config_part = _remove_comments(c[1])
for server_block in _get_server_blocks(config_part): for server_block in _get_server_blocks(config_part):
sn = next(re.finditer(SERVER_NAME_RE, server_block), None) sn = next(re.finditer(SERVER_NAME_RE, server_block))
if not sn: if not sn:
continue continue

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name='ncc', name='ncc',
version='1.0.2', version='1.0.1',
packages=['ncc'], packages=['ncc'],
install_requires=[ install_requires=[
'click', 'click',