diff --git a/artifactory.py b/artifactory.py index 4325018..0e71e2e 100755 --- a/artifactory.py +++ b/artifactory.py @@ -1887,10 +1887,12 @@ def creator(self): """ return self._accessor.creator(self) - def is_dir(self): + def is_dir(self, follow_symlinks=False): """ Whether this path is a directory. """ + if follow_symlinks: + raise TypeError('Artifactory does not have symlink feature') return self._accessor.is_dir(self) def is_file(self):