summaryrefslogtreecommitdiffstats
path: root/pym/portage/cvstree.py
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-05-15 23:24:31 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-05-15 23:24:31 +0200
commit7ba599709990b35cddcd0d0163e172d6ad9bcc0f (patch)
tree6e076c6c2e9aa45d95773ccf8eaae1dbc69bd53a /pym/portage/cvstree.py
parent5eef84cb4b72695548937445019eac24f53d252b (diff)
downloadportage-7ba599709990b35cddcd0d0163e172d6ad9bcc0f.tar.gz
portage-7ba599709990b35cddcd0d0163e172d6ad9bcc0f.tar.bz2
portage-7ba599709990b35cddcd0d0163e172d6ad9bcc0f.zip
Fix some typos.
Diffstat (limited to 'pym/portage/cvstree.py')
-rw-r--r--pym/portage/cvstree.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pym/portage/cvstree.py b/pym/portage/cvstree.py
index f36e9230c..de580f57e 100644
--- a/pym/portage/cvstree.py
+++ b/pym/portage/cvstree.py
@@ -1,5 +1,5 @@
# cvstree.py -- cvs tree utilities
-# Copyright 1998-2004 Gentoo Foundation
+# Copyright 1998-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
from __future__ import print_function
@@ -199,8 +199,8 @@ def apply_cvsignore_filter(list):
def getentries(mydir,recursive=0):
"""(basedir,recursive=0)
- Scans the given directory and returns an datadict of all the entries in
- the directory seperated as a dirs dict and a files dict."""
+ Scans the given directory and returns a datadict of all the entries in
+ the directory separated as a dirs dict and a files dict."""
myfn=mydir+"/CVS/Entries"
# entries=[dirs, files]
entries={"dirs":{},"files":{}}