diff options
-rw-r--r-- | pym/portage/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index d73ea6d5e..789d04307 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -393,7 +393,7 @@ getcwd() def abssymlink(symlink, target=None): "This reads symlinks, resolving the relative symlinks, and returning the absolute." - if target is None: + if target is not None: mylink = target else: mylink = os.readlink(symlink) |