allow % in filenames
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
__version__ = "20220607.0"
|
__version__ = "20220615.0"
|
||||||
|
|
||||||
|
|
||||||
def get_version():
|
def get_version():
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ class Mirva:
|
|||||||
|
|
||||||
def create_config(self):
|
def create_config(self):
|
||||||
|
|
||||||
self.config = configparser.ConfigParser()
|
self.config = configparser.RawConfigParser()
|
||||||
self.config.read(self.config_file)
|
self.config.read(self.config_file)
|
||||||
config_changed = False
|
config_changed = False
|
||||||
if not "SITE" in self.config:
|
if not "SITE" in self.config:
|
||||||
@@ -128,7 +128,7 @@ class Mirva:
|
|||||||
self.posts.append(post)
|
self.posts.append(post)
|
||||||
|
|
||||||
def get_config(self):
|
def get_config(self):
|
||||||
self.config = configparser.ConfigParser()
|
self.config = configparser.RawConfigParser()
|
||||||
self.config.read(self.config_file)
|
self.config.read(self.config_file)
|
||||||
|
|
||||||
def write_config(self):
|
def write_config(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user