summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorJulien Jehannet <julien.jehannet@logilab.fr>2010-07-28 17:34:22 +0200
committerJulien Jehannet <julien.jehannet@logilab.fr>2010-07-28 17:34:22 +0200
commitb4065689df10089e669689280a55700b848b63a6 (patch)
tree7382ab2d3c901db148bbcf14ccc56b7265dd6e24 /__init__.py
parent515ea30836454fb21195cfa4a7dc8fc3c38b5e00 (diff)
downloadlogilab-common-b4065689df10089e669689280a55700b848b63a6.tar.gz
fileutils: ignore vim swap file extension (.swp)
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py2
1 files changed, 1 insertions, 1 deletions
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)