aboutsummaryrefslogtreecommitdiff
path: root/pyblog
diff options
context:
space:
mode:
Diffstat (limited to 'pyblog')
-rwxr-xr-xpyblog4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyblog b/pyblog
index 0b7b3d26..271a4684 100755
--- a/pyblog
+++ b/pyblog
@@ -304,7 +304,7 @@ def generate(fresh=False):
for name in files:
extension = name.split(".")[-1]
- if extension not in ["css", "jpg", "md", "png", "svg"]:
+ if extension not in ["css", "jpg", "md", "png", "svg", "ico"]:
continue
relpath = os.path.join(relroot, name)
@@ -320,7 +320,7 @@ def generate(fresh=False):
anything_modified = True
if srcpath == INDEXMD:
continue # index will be processed separately
- if extension in ["css", "jpg", "png", "svg"]:
+ if extension in ["css", "jpg", "png", "svg", "ico"]:
sys.stderr.write("copying %s\n" % relpath)
shutil.copy(srcpath, dstpath)
elif extension == "md":