Skip to content

Commit

Permalink
Lowercase day of week placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
sultaniman committed Apr 2, 2024
1 parent fcd1d73 commit 6571f87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/destinations/impl/filesystem/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def params(self) -> Optional[Dict[str, Any]]:
self._params["hour"] = now.format("HH")
self._params["minute"] = now.format("mm")
# Day of week
self._params["dow"] = now.format("ddd")
self._params["dow"] = now.format("ddd").lower()
self._params["timestamp"] = int(now.timestamp())

# Format curr_date datetime according to given format
Expand Down

0 comments on commit 6571f87

Please sign in to comment.