diff options
-rw-r--r-- | pym/portage/data.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/pym/portage/data.py b/pym/portage/data.py index d50a6752a..8b89f2e4f 100644 --- a/pym/portage/data.py +++ b/pym/portage/data.py @@ -20,16 +20,10 @@ if ostype == "Linux" or \ userland="GNU" elif ostype == "Darwin": userland="Darwin" - def lchown(*pos_args, **key_args): - pass elif ostype.endswith("BSD") or ostype =="DragonFly": userland="BSD" if not lchown: - if "lchown" in dir(os): - # Included in python-2.3 - lchown = os.lchown - else: try: import missingos lchown = missingos.lchown |