From 3a1d7b9d8d151e056dd275c709ac5fc0ef260e53 Mon Sep 17 00:00:00 2001 From: Jan Pokorný Date: Mon, 23 Sep 2013 19:02:18 +0200 Subject: lib: fix extraneous space MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jan Pokorný --- lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__ -- cgit