From 32bfaa7cc1c736fd62fcbb6414de9498dc20ed07 Mon Sep 17 00:00:00 2001 From: Adriano Peluso Date: Wed, 5 Apr 2017 15:13:06 +0200 Subject: [PATCH 2/2] buildable on python27 too --- genshi/template/directives.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/genshi/template/directives.py b/genshi/template/directives.py index 6fd0f28..1f70ef6 100644 --- a/genshi/template/directives.py +++ b/genshi/template/directives.py @@ -266,7 +266,7 @@ class DefDirective(Directive): if isinstance(ast, _ast.Call): self.name = ast.func.id for arg in ast.args: - if isinstance(arg, _ast.Starred): + if hasattr(_ast, 'Starred') and isinstance(arg, _ast.Starred): # Python 3.5+ self.star_args = arg.value.id else: -- 2.12.0 Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/mail.scm
AgeCommit message (Expand)Author
2023-12-14services: Add rspamd-service-type....Thomas Ieong
2023-05-11system: pam: Let PAM extensions add shepherd requirements....Josselin Poiret
2023-03-03services: mail: Deprecate 'dovecot-service' procedure....Bruno Victal
2022-12-20services: opensmtpd: Add 'shepherd-requirement' field....Bruno Victal
2022-12-20services: opensmtpd: Use 'match-record' instead of 'match'....Bruno Victal
2022-11-02gnu: dovecot: Use standard mkdir-p/perms....Julien Lepiller
2022-08-01services: opensmtpd: Make commands setgid to "smtpq" by default....Maya
2022-06-24services: configuration: Remove 'validate-configuration'....Ludovic Courtès
2022-06-24services: configuration: Report the location of field type errors....Ludovic Courtès