summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Core.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Server/Core.py')
-rw-r--r--src/lib/Server/Core.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/Server/Core.py b/src/lib/Server/Core.py
index e7e22f3c3..b3742e8d3 100644
--- a/src/lib/Server/Core.py
+++ b/src/lib/Server/Core.py
@@ -200,7 +200,7 @@ except ImportError:
class Core(object):
'''The Core object is the container for all Bcfg2 Server logic, and modules'''
- def __init__(self, repo, structures, generators, password, svn):
+ def __init__(self, repo, structures, generators, password, svn, encoding):
object.__init__(self)
self.datastore = repo
try:
@@ -215,6 +215,7 @@ class Core(object):
self.revision = '-1'
self.password = password
self.svn = svn
+ self.encoding = encoding
try:
if self.svn:
self.read_svn_revision()