소스 검색

Merge branch 'master' into testing

Yentl Van Tendeloo 7 년 전
부모
커밋
074e99eb9f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      bootstrap/semi_primitives.alc

+ 2 - 1
bootstrap/semi_primitives.alc

@@ -245,7 +245,8 @@ String function dict_to_string(d : Element):
 		result = result + cast_v2s(key)
 		result = result + ": "
 		result = result + cast_v2s(dict_read_node(d, key))
-		result = result + ", "
+		if (set_len(keys) > 0):
+			result = result + ", "
 	
 	result = result + "}"