| Index: pydir/crosstest_generator.py
|
| diff --git a/pydir/crosstest_generator.py b/pydir/crosstest_generator.py
|
| index 3038f4ced26899801e3df2d95de39956877c85c6..945ad0086b597ea4dbaf7968919bb20af2b43908 100755
|
| --- a/pydir/crosstest_generator.py
|
| +++ b/pydir/crosstest_generator.py
|
| @@ -20,10 +20,10 @@ def Match(desc, includes, excludes, default_match):
|
| Otherwise, the 'default_match' value is returned.
|
| """
|
| for exclude in excludes:
|
| - if exclude < desc:
|
| + if exclude <= desc:
|
| return False
|
| for include in includes:
|
| - if include < desc:
|
| + if include <= desc:
|
| return True
|
| return default_match
|
|
|
|
|