summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Bundler.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-05-20 11:10:43 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-05-20 11:10:43 -0400
commit10d60b35ce384d4b73fd63939aa65b07e9032a12 (patch)
treedbda095dca372c38d15a32a490adc2f2b16f0d83 /src/lib/Bcfg2/Server/Plugins/Bundler.py
parent5945f7f16a40066f748808c35d1db4dd0de291b6 (diff)
downloadbcfg2-10d60b35ce384d4b73fd63939aa65b07e9032a12.tar.gz
bcfg2-10d60b35ce384d4b73fd63939aa65b07e9032a12.tar.bz2
bcfg2-10d60b35ce384d4b73fd63939aa65b07e9032a12.zip
fixed unit tests
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Bundler.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Bundler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Bundler.py b/src/lib/Bcfg2/Server/Plugins/Bundler.py
index d114b0873..2473a3ed2 100644
--- a/src/lib/Bcfg2/Server/Plugins/Bundler.py
+++ b/src/lib/Bcfg2/Server/Plugins/Bundler.py
@@ -12,7 +12,7 @@ from genshi.template import TemplateError
class BundleFile(Bcfg2.Server.Plugin.StructFile):
""" Representation of a bundle XML file """
- bundle_name_re = re.compile('^(?P<name>.*)\.(xml|genshi)$')
+ bundle_name_re = re.compile(r'^(?P<name>.*)\.(xml|genshi)$')
def __init__(self, filename, should_monitor=False):
Bcfg2.Server.Plugin.StructFile.__init__(self, filename,