diff options
author | Ruben Pollan <meskio@sindominio.net> | 2015-06-12 18:47:02 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2015-06-12 18:47:02 +0200 |
commit | a70f2f0c74362b0b2d16b31b9b3ce66da9ce4b47 (patch) | |
tree | 85beb0debbd1c72f66c1b9c1d3f789de56575132 | |
parent | e36d404e067309856dcc15b93ad1a074dc2d91f1 (diff) |
[bug] fix a typo in the usage ISoledadPostSyncPluginrelease/bitmask-0.9.x-alpha
The variable was renamed in the definition but not where it's used.
* Related: #7138
-rw-r--r-- | client/src/leap/soledad/client/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/leap/soledad/client/api.py b/client/src/leap/soledad/client/api.py index 3cc1f8a5..6c2b3673 100644 --- a/client/src/leap/soledad/client/api.py +++ b/client/src/leap/soledad/client/api.py @@ -664,7 +664,7 @@ class Soledad(object): # Post-Sync Hooks if docs: iface = soledad_interfaces.ISoledadPostSyncPlugin - suitable_plugins = collect_plugins(synced_plugin) + suitable_plugins = collect_plugins(iface) for plugin in suitable_plugins: watched = plugin.watched_doc_types r = [filter( |