You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2021/05/09 21:45:06 UTC

[incubator-ponymail-foal] branch master updated: Fix import to match recent change

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new cb982a7  Fix import to match recent change
cb982a7 is described below

commit cb982a7d00fa1ddea6c9e86e8c8b2ea47520fe93
Author: Sebb <se...@apache.org>
AuthorDate: Sun May 9 22:44:52 2021 +0100

    Fix import to match recent change
---
 tools/plugins/generators.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/plugins/generators.py b/tools/plugins/generators.py
index 6f3c747..749f71b 100644
--- a/tools/plugins/generators.py
+++ b/tools/plugins/generators.py
@@ -189,7 +189,7 @@ def generator(name):
         return __GENERATORS[name]
     except KeyError:
         print("WARN: generator %s not found, defaulting to 'legacy'" % name)
-        return plugins.generators_old.legacy
+        return generators_old.legacy
 
 
 def generate(name, msg, body, lid, attachments, raw_msg):