From b4065689df10089e669689280a55700b848b63a6 Mon Sep 17 00:00:00 2001 From: Julien Jehannet Date: Wed, 28 Jul 2010 17:34:22 +0200 Subject: fileutils: ignore vim swap file extension (.swp) --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '__init__.py') diff --git a/__init__.py b/__init__.py index ed8b44e..190804d 100644 --- a/__init__.py +++ b/__init__.py @@ -29,7 +29,7 @@ from logilab.common.__pkginfo__ import version as __version__ STD_BLACKLIST = ('CVS', '.svn', '.hg', 'debian', 'dist', 'build') -IGNORED_EXTENSIONS = ('.pyc', '.pyo', '.elc', '~') +IGNORED_EXTENSIONS = ('.pyc', '.pyo', '.elc', '~', '.swp') # set this to False if you've mx DateTime installed but you don't want your db # adapter to use it (should be set before you got a connection) -- cgit v1.2.1