From c61a207699b6fb5c7a98b5b31e49bd3431d81866 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sat, 18 Dec 2010 21:06:51 +0000 Subject: [PATCH] Do not make the output with absolute urls by default. --- pelican/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pelican/__init__.py b/pelican/__init__.py index 79842f74..9f15e37b 100644 --- a/pelican/__init__.py +++ b/pelican/__init__.py @@ -38,9 +38,6 @@ def init_params(settings=None, path=None, theme=None, output_path=None, else: raise Exception("Impossible to find the theme %s" % theme) - if 'SITEURL' not in settings: - settings['SITEURL'] = output_path - # get the list of files to parse if not path: raise Exception('you need to specify a path to search the docs on !')