bug fix
This commit is contained in:
parent
d741af1a4a
commit
5266d5f292
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ class RSSGenerator:
|
||||||
self.output_path = f"../{XML_BASE_PATH}/index.xml" if XML_BASE_PATH else "../index.xml"
|
self.output_path = f"../{XML_BASE_PATH}/index.xml" if XML_BASE_PATH else "../index.xml"
|
||||||
|
|
||||||
if not EXECUTE_FROM_RSS_GENERATOR_DIR:
|
if not EXECUTE_FROM_RSS_GENERATOR_DIR:
|
||||||
self.output_path.replace('../', '')
|
self.output_path = self.output_path.replace('../', '')
|
||||||
|
|
||||||
self.post_title = None
|
self.post_title = None
|
||||||
self.post_link = None
|
self.post_link = None
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue