From f75b60995bf4da057708e3f79f6b097c16996366 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 23 Mar 2009 02:19:22 +0000 Subject: Fix argument validation to allow file paths. Thanks to Arfrever for reporting. (trunk r13140) svn path=/main/branches/2.1.6/; revision=13157 --- pym/_emerge/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 6b26f594e..67ec6de0e 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -15178,6 +15178,13 @@ def emerge_main(): if x.startswith(SETPREFIX) or \ is_valid_package_atom(x): continue + if x[:1] == os.sep: + continue + try: + os.lstat(x) + continue + except OSError: + pass msg = [] msg.append("'%s' is not a valid package atom." % (x,)) msg.append("Please check ebuild(5) for full details.") -- cgit v1.2.3-1-g7c22