diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2008-03-09 15:39:32 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2008-03-09 15:39:32 +0000 |
commit | 5e7cd171af37fc5cfe133c3d07020e2089b5183e (patch) | |
tree | 349791b0bf135cbf7811fd7c3f6d3c7cdc538721 /src/lib/Server | |
parent | 25df651ee83c5e5229f042f6df1b5b83f9016043 (diff) | |
download | bcfg2-5e7cd171af37fc5cfe133c3d07020e2089b5183e.tar.gz bcfg2-5e7cd171af37fc5cfe133c3d07020e2089b5183e.tar.bz2 bcfg2-5e7cd171af37fc5cfe133c3d07020e2089b5183e.zip |
tighten up ignore regex in Cfg
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4406 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server')
-rw-r--r-- | src/lib/Server/Plugins/Cfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Server/Plugins/Cfg.py b/src/lib/Server/Plugins/Cfg.py index 7033945c2..1a6bf4e52 100644 --- a/src/lib/Server/Plugins/Cfg.py +++ b/src/lib/Server/Plugins/Cfg.py @@ -276,7 +276,7 @@ class Cfg(Bcfg2.Server.Plugin.Plugin): __name__ = 'Cfg' __version__ = '$Id$' __author__ = 'bcfg-dev@mcs.anl.gov' - tempfile = re.compile("^.*~$|^.*\.swp") + tempfile = re.compile("^.*~$|^.*\.swp$") def __init__(self, core, datastore): Bcfg2.Server.Plugin.Plugin.__init__(self, core, datastore) |