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

Petter Reinholdtsen pere at hungry.com
Tue Jan 26 03:32:57 PST 2016


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

-- 
Happy hacking
Petter Reinholdtsen


More information about the Calypso mailing list