aports/testing/pantalaimon/fix-typo.patch
2024-03-08 13:53:48 +00:00

24 lines
879 B
Diff

Patch-Source: https://github.com/matrix-org/pantalaimon/commit/127373fdcc91c5a4403e25444526822e59083a0d.patch
--
From 127373fdcc91c5a4403e25444526822e59083a0d Mon Sep 17 00:00:00 2001
From: Igor Artemenko <igor@codemonium.com>
Date: Tue, 6 Dec 2022 12:38:38 +0000
Subject: [PATCH] Fix typo
---
pantalaimon/client.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pantalaimon/client.py b/pantalaimon/client.py
index 5b4ce05..be32859 100644
--- a/pantalaimon/client.py
+++ b/pantalaimon/client.py
@@ -135,7 +135,7 @@ class InvalidLimit(Exception):
class SqliteQStore(SqliteStore):
def _create_database(self):
return SqliteQueueDatabase(
- self.database_path, pragmas=(("foregign_keys", 1), ("secure_delete", 1))
+ self.database_path, pragmas=(("foreign_keys", 1), ("secure_delete", 1))
)
def close(self):