rkarivuraj / coderev

Automatically exported from code.google.com/p/coderev
GNU General Public License v2.0
0 stars 0 forks source link

Ignoring special dirs/files like '.svn', '*.swp' doesn't work #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
This is because of wrong regex pattern in _global_dir_ignore_list and
_global_dir_ignore_list

    '\bCVS$',
    '\bSCCS$',
    '\b\\.svn$',

Correct pattern should like '\\bCVS$' or r'\bCVS' etc.

Original issue reported on code.google.com by matt...@gmail.com on 20 Aug 2008 at 6:53

GoogleCodeExporter commented 9 years ago
Fixed in coderev-0.1.1 (r6)

Original comment by matt...@gmail.com on 20 Aug 2008 at 7:17

GoogleCodeExporter commented 9 years ago
My bad, this is now totally fixed in r9.

Original comment by matt...@gmail.com on 21 Aug 2008 at 2:18