diff --git a/CHANGELOG.md b/CHANGELOG.md
index dc443dd30ec4365a0e9eb2842799734966fe6982..d25430b81ad559ffe47e752fe2117688a1956ed3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## [1.7.3] - 2022-05-19
+### Fixed
+- Fixed syntax error in file.
+
 ## [1.7.2] - 2022-05-18
 ### Fixed
 - Fixed no handler actually assigned when using combination of NullHandler and actual one
diff --git a/src/WC/WooCommerceHandler.php b/src/WC/WooCommerceHandler.php
index 960f9df6ce291a4054883ac33f03141df68b857a..8dfa9d06fb05583e8f4885571722ae14a8f96640 100644
--- a/src/WC/WooCommerceHandler.php
+++ b/src/WC/WooCommerceHandler.php
@@ -26,7 +26,7 @@ class WooCommerceHandler extends AbstractProcessingHandler {
 	protected function write( array $record ) {
 		$context = array_merge(
 			[
-				'source' => $this->channel;,
+				'source' => $this->channel,
 			],
 			$record['extra'],
 			$record['context']