| Index: tests/test_additional_paths.py | 
| =================================================================== | 
| --- a/tests/test_additional_paths.py | 
| +++ b/tests/test_additional_paths.py | 
| @@ -54,17 +54,17 @@ | 
| ap_root = tmpdir_factory.mktemp('ap_site') | 
| ap_root.join('settings.ini').write( | 
| base_root.join('settings.ini').read() + | 
| PATHS_FRAGMENT_TEMPLATE.format(base_root) | 
| ) | 
|  | 
| pages = ap_root.mkdir('pages') | 
| for file_name in ['filter.tmpl', 'global.md', 'translate.tmpl']: | 
| -        pages.join(file_name).write('template=empty\n\nMAIN_SITE') | 
| +        pages.join(file_name).write('MAIN_SITE') | 
| pages.join('map.tmpl').write(base_pages.join('sitemap.tmpl').read()) | 
|  | 
| subprocess.check_call(['hg', 'init', ap_root.strpath]) | 
| subprocess.check_call(['hg', '-R', ap_root.strpath, | 
| 'commit', '-A', '-m', 'foo']) | 
|  | 
| return ap_root | 
|  | 
|  |