diff --git a/manila/utils.py b/manila/utils.py index 7513e2e8d8..1a38a4a71c 100644 --- a/manila/utils.py +++ b/manila/utils.py @@ -96,13 +96,6 @@ def execute(*cmd, **kwargs): return processutils.execute(*cmd, **kwargs) -def trycmd(*args, **kwargs): - """Convenience wrapper around oslo's trycmd() function.""" - if 'run_as_root' in kwargs and 'root_helper' not in kwargs: - kwargs['root_helper'] = _get_root_helper() - return processutils.trycmd(*args, **kwargs) - - class SSHPool(pools.Pool): """A simple eventlet pool to hold ssh connections."""