diff --git a/wikstraktor.py b/wikstraktor.py
index 9d1918d7f7d1bd00b094eae88c999a10598c7a9b..9d0a2df31cf75c54b943562cdd0b4379a713ca6f 100755
--- a/wikstraktor.py
+++ b/wikstraktor.py
@@ -358,7 +358,6 @@ class Sense(SubInfo):
 				res["Translations"].append(t.serializable(prefix))
 		if len(self.subsenses) > 0:
 			res["Subsenses"] = {}
-			print("subsenses", self.label, len(self.subsenses))##
 			for t in self.subsenses:
 				res["Subsenses"][t.set_id(self.label)]= t.serializable(prefix)
 		return res
@@ -467,7 +466,6 @@ class Entry:
 				src = s.get_src_from_id()
 				if src != None and src_map[src] != src:
 					s.replace_src_in_id(src, src_map[src])
-					print(s.label, len(s.subsenses))##
 					for ss in s.subsenses:
 						ss.replace_src_in_id(src, src_map[src])
 						for d in ss.definitions:
@@ -476,7 +474,6 @@ class Entry:
 							e.replace_src_in_id(src, src_map[src])
 						for t in ss.translations:
 							t.replace_src_in_id(src, src_map[src])
-					print(s.label, len(s.subsenses))##
 					for d in s.definitions:
 						d.replace_src_in_id(src, src_map[src])
 					for e in s.examples:
@@ -890,7 +887,6 @@ if __name__ == "__main__":
 						resp = w
 					else:
 						resp += w
-		print(resp != None)
 		if resp != None :
 			resp = resp.export(not args.no_id, args.force_ascii, args.compact)
 		if args.destination_file != None:
diff --git a/wikstraktor.sqlite b/wikstraktor.sqlite
index c35b2bb7c4efb8fb7db535875b7336a3d712ec59..a41143a79f6220cd37a258a2b105deb621a15baf 100644
Binary files a/wikstraktor.sqlite and b/wikstraktor.sqlite differ