diff --git a/README.md b/README.md
index fc511b78..3d094f3b 100644
--- a/README.md
+++ b/README.md
@@ -30,19 +30,19 @@ XML Playlist Example
```xml
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
```
diff --git a/gen_playlist_from_subfolders.sh b/gen_playlist_from_subfolders.sh
index 10292338..5422b6f0 100755
--- a/gen_playlist_from_subfolders.sh
+++ b/gen_playlist_from_subfolders.sh
@@ -42,7 +42,7 @@ while read -r line; do
clipPath=$(echo "$line" | sed 's/&/&/g')
clipDuration=$( ffprobe -v error -show_format "$line" | awk -F= '/duration/{ print $2 }' )
- printf '\t\n' "$clipPath" "$listStart" "$clipDuration" "0.0" "$clipDuration" >> "$trunk/$playlist"
+ printf '\t\t\n' "$clipPath" "$listStart" "$clipDuration" "0.0" "$clipDuration" >> "$trunk/$playlist"
# add start time
listStart="$( awk -v lS="$listStart" -v cD="$clipDuration" 'BEGIN{ print lS + cD }' )"