mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 17:56:55 +07:00
6 lines
221 B
Python
6 lines
221 B
Python
def getstatus(file):
|
|
"""Return output of "ls -ld <file>" in a string."""
|
|
import warnings
|
|
warnings.warn("commands.getstatus() is deprecated", DeprecationWarning, 2)
|
|
return getoutput('ls -ld' + mkarg(file))
|