[Calypso] [PATCH] Use consistent indentation in webdav.py

Guido Günther agx at sigxcpu.org
Tue Jan 26 09:28:13 PST 2016


On Tue, Jan 26, 2016 at 12:32:57PM +0100, Petter Reinholdtsen wrote:
> 
> While testing calypso with python version 3, python complained about
> inconsistent indentaiton in a function in webdav.py.  This patch fixes
> the issue, by transforming one line with spaces and tab to use only
> spaces, to match the other lines in the file.
> 
> diff --git a/calypso/webdav.py b/calypso/webdav.py
> index 2d87349..5864b6b 100644
> --- a/calypso/webdav.py
> +++ b/calypso/webdav.py
> @@ -207,7 +207,7 @@ class Pathtime(object):
>      """Path name and timestamps"""
>  
>      def __init__(self, path):
> -    	self.path = path
> +        self.path = path
>          self.mtime = self.curmtime
>  
>      @property

Pushed, thanks.
 -- Guido


More information about the Calypso mailing list