Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwurstsalat <mailtrash@posteo.de>2023-01-08 00:50:02 +0300
committerwurstsalat <mailtrash@posteo.de>2023-01-08 00:50:14 +0300
commitdb0a0d1118f23e1cd24d0b58f3c386fbdf0ec856 (patch)
tree7ba3a8358dfb541ab115ea9432ac6967dbb90c9c
parent84789bfe7cae4ee2e1c93cb0356d1a87745bdb81 (diff)
[pgp] 1.5.1
Fix Singleton import
-rw-r--r--pgp/backend/python_gnupg.py2
-rw-r--r--pgp/plugin-manifest.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/pgp/backend/python_gnupg.py b/pgp/backend/python_gnupg.py
index b82fedb..d942cfd 100644
--- a/pgp/backend/python_gnupg.py
+++ b/pgp/backend/python_gnupg.py
@@ -26,7 +26,7 @@ from functools import lru_cache
import gnupg
-from gajim.common.helpers import Singleton
+from gajim.common.util.classes import Singleton
from pgp.exceptions import SignError
diff --git a/pgp/plugin-manifest.json b/pgp/plugin-manifest.json
index 0b6049e..0a0872c 100644
--- a/pgp/plugin-manifest.json
+++ b/pgp/plugin-manifest.json
@@ -16,5 +16,5 @@
"gajim>=1.4.0"
],
"short_name": "pgp",
- "version": "1.5.0"
+ "version": "1.5.1"
} \ No newline at end of file