LGTM

Jelmer

On Sat, Apr 09, 2016 at 12:42:38AM +0200, Guido Günther wrote:
> This makes it simple to spot empty values
> ---
>  calypso/acl/htpasswd.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/calypso/acl/htpasswd.py b/calypso/acl/htpasswd.py
> index 9932197..89e5ba5 100644
> --- a/calypso/acl/htpasswd.py
> +++ b/calypso/acl/htpasswd.py
> @@ -59,7 +59,7 @@ def _sha1(hash_value, password):
>  
>  def has_right(owner, user, password):
>      """Check if ``user``/``password`` couple is valid."""
> -    log.debug("owner %s user %s", owner, user)
> +    log.debug("owner '%s' user '%s'", owner, user)
>      for line in open(FILENAME).readlines():
>          if line.strip():
>              login, hash_value = line.strip().split(":", 1)
> -- 
> 2.8.0.rc3
> 
> _______________________________________________
> Calypso mailing list
> [email protected]
> http://keithp.com/mailman/listinfo/calypso

Attachment: signature.asc
Description: PGP signature

_______________________________________________
Calypso mailing list
[email protected]
http://keithp.com/mailman/listinfo/calypso

Reply via email to