summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2004-10-25 20:22:58 +0000
committerNarayan Desai <desai@mcs.anl.gov>2004-10-25 20:22:58 +0000
commit01a0fe80aef74e7b975e3ebaf7bcf9e340c6a196 (patch)
treede39ee7566ef282e5678db78e3fd8bbbf9a4df0d
parenta9137ee401c4db66d34c17ee4eb7fb7a521d289e (diff)
downloadbcfg2-01a0fe80aef74e7b975e3ebaf7bcf9e340c6a196.tar.gz
bcfg2-01a0fe80aef74e7b975e3ebaf7bcf9e340c6a196.tar.bz2
bcfg2-01a0fe80aef74e7b975e3ebaf7bcf9e340c6a196.zip
pylint fixup
(Logical change 1.113) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@505 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r--src/lib/Client/__init__.py3
-rw-r--r--src/lib/Server/Structure.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/Client/__init__.py b/src/lib/Client/__init__.py
index b0255ba45..0435249f7 100644
--- a/src/lib/Client/__init__.py
+++ b/src/lib/Client/__init__.py
@@ -1,3 +1,4 @@
-# $Id: $
+'''This contains all Bcfg2 Client modules'''
+__revision__ = '$Revision$'
__all__ = ["Toolset", "Debian", "Solaris", "Redhat", "Gentoo"]
diff --git a/src/lib/Server/Structure.py b/src/lib/Server/Structure.py
index c969ff4ae..a148b7f16 100644
--- a/src/lib/Server/Structure.py
+++ b/src/lib/Server/Structure.py
@@ -12,7 +12,7 @@ class Structure(object):
def __init__(self, core, datastore):
'''Common structure setup'''
object.__init__(self)
- self.data = "%s/%s"%(datastore,self.__name__)
+ self.data = "%s/%s" % (datastore, self.__name__)
self.core = core
self.__setup__()