aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Harring <ferringb@gentoo.org>2005-07-28 05:25:03 +0000
committerBrian Harring <ferringb@gentoo.org>2005-07-28 05:25:03 +0000
commitbb26b1fff6d2cae1fef2d2dad2fd43605b88580a (patch)
treed6aa7ccf78db02c099b90440fa1c8e5df0bf3897
parentbleh, yanked the interesect stub since it's not finished. (diff)
downloadportage-cvs-bb26b1fff6d2cae1fef2d2dad2fd43605b88580a.tar.gz
portage-cvs-bb26b1fff6d2cae1fef2d2dad2fd43605b88580a.tar.bz2
portage-cvs-bb26b1fff6d2cae1fef2d2dad2fd43605b88580a.zip
typo in StrSubstringMatch instantation)
-rw-r--r--portage/restrictions/restriction.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/portage/restrictions/restriction.py b/portage/restrictions/restriction.py
index d0a0dd0..d97c96b 100644
--- a/portage/restrictions/restriction.py
+++ b/portage/restrictions/restriction.py
@@ -1,7 +1,7 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/portage/restrictions/restriction.py,v 1.4 2005/07/27 02:26:49 ferringb Exp $
+# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/portage/restrictions/restriction.py,v 1.5 2005/07/28 05:25:03 ferringb Exp $
import re, logging
@@ -108,7 +108,7 @@ class StrSubstringMatch(StrMatch):
__slots__ = tuple(["substr"] + StrMatch.__slots__)
def __init__(self, substr, CaseSensitive=True, **kwds):
- super(StrSubString, self).__init__(**kwds)
+ super(StrSubstringMatch, self).__init__(**kwds)
if not CaseSensitive:
self.flags = re.I
self.substr = str(substr).lower()