Handle KorAP-CoNLLU comment metadata (foundry, filename) in case of spacy

Change-Id: I9e41e7369126aaa5a0043dca7e4fc7d8609d750b
diff --git a/systems/parse_spacy_pipe.py b/systems/parse_spacy_pipe.py
index b39e2f2..36f6de3 100644
--- a/systems/parse_spacy_pipe.py
+++ b/systems/parse_spacy_pipe.py
@@ -86,7 +86,7 @@
 	total_processed_sents = 0
 	
 	while file_has_next:
-		annos, file_has_next = fu.get_file_annos_chunk(stdin, chunk_size=CHUNK_SIZE, 		token_class=get_token_type(args.gld_token_type), comment_str=args.comment_str)
+		annos, file_has_next = fu.get_file_annos_chunk(stdin, chunk_size=CHUNK_SIZE, token_class=get_token_type(args.gld_token_type), comment_str=args.comment_str, our_foundry="spacy")
 		if len(annos) == 0: break
 		total_processed_sents += len(annos)
 		logger.info(f"Already processed {total_processed_sents} sentences...")