diff --git a/doc.zih.tu-dresden.de/util/check-filesize.sh b/doc.zih.tu-dresden.de/util/check-filesize.sh
index dd15c810b06af48b7455e78784d87780a3f553f5..fbfcf9049e2dd231ab97ef605eae51a95506e561 100755
--- a/doc.zih.tu-dresden.de/util/check-filesize.sh
+++ b/doc.zih.tu-dresden.de/util/check-filesize.sh
@@ -39,7 +39,7 @@ lfsfiles=$(git lfs ls-files -n)
 for f in $(git diff $source_hash --name-only); do
     # Do not check size of git lfs files.
     if [[ $lfsfiles =~ "$f" ]]; then
-        echo "Skip file ${f} in webm or mp4 format cause it is a git lfs file."
+        echo "Skip file ${f} because it is a git lfs file."
         continue
     fi
     fs=$(wc -c $f | awk '{print $1}')