fix typo to make work if path ends in / (cf. issue #131)

This commit is contained in:
Rory McCann 2011-06-12 18:41:29 +01:00
commit 83a61da255

View file

@ -24,7 +24,7 @@ class Pelican(object):
' (see pelican --help for more information)')
if self.path.endswith('/'):
self.path = path[:-1]
self.path = self.path[:-1]
# define the default settings
self.settings = settings