diff --git a/.hgtags b/.hgtags
index 8171eeed3e7a929551657637e388d544171a9bd9_LmhndGFncw==..63b711b6e63cd8260cd777289d09e25841c8b9e5_LmhndGFncw== 100644
--- a/.hgtags
+++ b/.hgtags
@@ -29,3 +29,4 @@
 536ab7a17b99f9b7c5f89e97636976c05cad8173 16.0.1.3.0
 c422922e6c47634df921532fa26f73a77792cebc 17.0.1.0.0
 244d816f3ee9c11634b29bcb601594c86e2846eb 17.0.1.1.0
+37bbac9b58d9d074f0bf7574ae6b4a57bad8abcd 17.0.1.1.1
diff --git a/NEWS.rst b/NEWS.rst
index 8171eeed3e7a929551657637e388d544171a9bd9_TkVXUy5yc3Q=..63b711b6e63cd8260cd777289d09e25841c8b9e5_TkVXUy5yc3Q= 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -2,6 +2,11 @@
 Changelog
 =========
 
+17.0.1.1.1
+----------
+
+- Add python-magic as external dependency and fix print-paper-size metadata.
+
 17.0.1.1.0
 ----------
 
diff --git a/__manifest__.py b/__manifest__.py
index 8171eeed3e7a929551657637e388d544171a9bd9_X19tYW5pZmVzdF9fLnB5..63b711b6e63cd8260cd777289d09e25841c8b9e5_X19tYW5pZmVzdF9fLnB5 100644
--- a/__manifest__.py
+++ b/__manifest__.py
@@ -21,7 +21,7 @@
 {
     "name": "Redner",
     "license": "AGPL-3",
-    "version": "17.0.1.1.0",
+    "version": "17.0.1.1.1",
     "category": "Reporting",
     "author": "XCG Consulting",
     "website": "https://orbeet.io/",
@@ -41,5 +41,5 @@
         "web.assets_backend": ["redner/static/src/js/redner_report_action.esm.js"],
     },
     "installable": True,
-    "external_dependencies": {"python": ["requests_unixsocket"]},
+    "external_dependencies": {"python": ["requests_unixsocket", "python-magic"]},
 }
diff --git a/models/ir_actions_report.py b/models/ir_actions_report.py
index 8171eeed3e7a929551657637e388d544171a9bd9_bW9kZWxzL2lyX2FjdGlvbnNfcmVwb3J0LnB5..63b711b6e63cd8260cd777289d09e25841c8b9e5_bW9kZWxzL2lyX2FjdGlvbnNfcmVwb3J0LnB5 100644
--- a/models/ir_actions_report.py
+++ b/models/ir_actions_report.py
@@ -146,5 +146,5 @@
 
         # Get print-paper-size values
         if pf.format and pf.orientation:
-            metadata_values["print-paper-size",] = f"{pf.format} {pf.orientation}"
+            metadata_values["print-paper-size"] = f"{pf.format} {pf.orientation}"
         elif pf.format and not pf.orientation:
@@ -150,4 +150,4 @@
         elif pf.format and not pf.orientation:
-            metadata_values["print-paper-size",] = f"{pf.format}"
+            metadata_values["print-paper-size"] = f"{pf.format}"
 
         # Get print-paper-margin values: top | right | bottom | left
@@ -152,6 +152,6 @@
 
         # Get print-paper-margin values: top | right | bottom | left
-        metadata_values["print-paper-margin",] = (
+        metadata_values["print-paper-margin"] = (
             f"{pf.margin_top} {pf.margin_right} {pf.margin_bottom} {pf.margin_left}"
         )