bug 605. New method at fslocal for rename folders
Change-Id: Ic0acd82873a3790f228641ba676d2da9235059f1
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/osm_common/fsbase.py b/osm_common/fsbase.py
index b941c21..87d974d 100644
--- a/osm_common/fsbase.py
+++ b/osm_common/fsbase.py
@@ -62,6 +62,9 @@
def mkdir(self, folder):
raise FsException("Method 'mkdir' not implemented")
+ def dir_rename(self, src, dst):
+ raise FsException("Method 'dir_rename' not implemented")
+
def file_exists(self, storage):
raise FsException("Method 'file_exists' not implemented")