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
_______________________________________________
Calypso mailing list
[email protected]
http://keithp.com/mailman/listinfo/calypso