X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_common%2Ffsbase.py;h=87d974d522c1568e43a2bbefaed61c855c1fc395;hb=d4378aa85f33bffbf3ef303dbd66513562cbe8f2;hp=b941c2186072a71dcb296a915848181d3119abd1;hpb=d63ea273e23c9e1350ed300872f703faf4ddc3c7;p=osm%2Fcommon.git 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 @@ class FsBase(object): 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")