diff options
author | Brian Harring <ferringb@gentoo.org> | 2005-06-11 09:20:36 +0000 |
---|---|---|
committer | Brian Harring <ferringb@gentoo.org> | 2005-06-11 09:20:36 +0000 |
commit | 7f0c5a28746d982d7811ebdeee9b11204e9d2ed5 (patch) | |
tree | 4ae76d4c8fd79101ad742f214c3289465a5c3ece /pym | |
parent | Brought forward fixes from stable (diff) | |
download | portage-cvs-7f0c5a28746d982d7811ebdeee9b11204e9d2ed5.tar.gz portage-cvs-7f0c5a28746d982d7811ebdeee9b11204e9d2ed5.tar.bz2 portage-cvs-7f0c5a28746d982d7811ebdeee9b11204e9d2ed5.zip |
someone needs a wedgie. stick to tabs, not spaces for indentation (or convert entirely to spaces, either way, one or the other, not
both) :)
Diffstat (limited to 'pym')
-rw-r--r-- | pym/portage_util.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pym/portage_util.py b/pym/portage_util.py index a38737e..89114f0 100644 --- a/pym/portage_util.py +++ b/pym/portage_util.py @@ -1,20 +1,20 @@ # Copyright 2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/pym/portage_util.py,v 1.21 2005/03/08 12:04:31 ferringb Exp $ -cvs_id_string="$Id: portage_util.py,v 1.21 2005/03/08 12:04:31 ferringb Exp $"[5:-2] +# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/pym/portage_util.py,v 1.22 2005/06/11 09:20:36 ferringb Exp $ +cvs_id_string="$Id: portage_util.py,v 1.22 2005/06/11 09:20:36 ferringb Exp $"[5:-2] import sys,string,shlex,os.path,stat,types import shutil try: - #XXX: This should get renamed to bsd_chflags, I think. - import chflags - bsd_chflags = chflags + #XXX: This should get renamed to bsd_chflags, I think. + import chflags + bsd_chflags = chflags except SystemExit, e: - raise + raise except: - # XXX: This should get renamed to bsd_chflags, I think. - bsd_chflags = None + # XXX: This should get renamed to bsd_chflags, I think. + bsd_chflags = None noiselimit = 0 def writemsg(mystr,noiselevel=0): |