summaryrefslogtreecommitdiffstats
path: root/lib.py
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2013-09-23 19:02:18 +0200
committerJan Pokorný <jpokorny@redhat.com>2013-09-23 19:02:18 +0200
commit3a1d7b9d8d151e056dd275c709ac5fc0ef260e53 (patch)
tree1ff4e1d25b301668b39bebacd8391baa424021b1 /lib.py
parentb64911b2f7bf554a8ee2e9d8db8d9ec41a473e54 (diff)
downloadcluster-overview-3a1d7b9d8d151e056dd275c709ac5fc0ef260e53.tar.gz
cluster-overview-3a1d7b9d8d151e056dd275c709ac5fc0ef260e53.tar.xz
cluster-overview-3a1d7b9d8d151e056dd275c709ac5fc0ef260e53.zip
lib: fix extraneous space
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to 'lib.py')
-rw-r--r--lib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.py b/lib.py
index c200a86..9222a3c 100644
--- a/lib.py
+++ b/lib.py
@@ -43,7 +43,7 @@ def bl_map_nodes_edges(nodes, edges, prev_nnames=None):
class LibMeta(type):
- def __init__(cls, name, bases, attrs):
+ def __init__(cls, name, bases, attrs):
__all__.append(name)
super(LibMeta, cls).__init__(name, bases, attrs)
old_init = cls.__init__