From: Zac Medico Date: Sat, 10 Feb 2007 21:50:28 +0000 (-0000) Subject: Fix missing stat import. X-Git-Tag: v2.2_pre1~1719 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=874ec94a05488125385ec570216ef064dd13dd6c;p=portage.git Fix missing stat import. svn path=/main/trunk/; revision=5947 --- diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py index 4c6d7cbab..56ef8dbb8 100644 --- a/pym/portage/dbapi/porttree.py +++ b/pym/portage/dbapi/porttree.py @@ -17,7 +17,7 @@ from portage import eclass_cache, auxdbkeys, auxdbkeylen, \ dep_expand, dep_getkey, catpkgsplit, match_from_list, match_to_list, \ eapi_is_supported, key_expand, dep_check -import os, sys +import os, stat, sys class portdbapi(dbapi):