Fix chyby z fe63458a51, generate_simple_tag špatně propagoval atributy.
				
					
				
			This commit is contained in:
		
							parent
							
								
									a36da55481
								
							
						
					
					
						commit
						51e51ec425
					
				
					 1 changed files with 5 additions and 4 deletions
				
			
		|  | @ -156,7 +156,8 @@ class OutputGenerator: | ||||||
| 	def generate_simple_tag(self, e: Union[Element, None]=None, tag: str="", attributes: Union[dict[str,str],None]=None, content: Union[ListContainer, Element, list[Union[Element, ListContainer]], str, None]=None, inline: Union[bool, None]=None): | 	def generate_simple_tag(self, e: Union[Element, None]=None, tag: str="", attributes: Union[dict[str,str],None]=None, content: Union[ListContainer, Element, list[Union[Element, ListContainer]], str, None]=None, inline: Union[bool, None]=None): | ||||||
| 		if not tag and e: | 		if not tag and e: | ||||||
| 			tag = self.tagname(e) | 			tag = self.tagname(e) | ||||||
| 		if attributes is None and e: | 		if attributes is None: | ||||||
|  | 			if e: | ||||||
| 				attributes = self.common_attributes(e) | 				attributes = self.common_attributes(e) | ||||||
| 			else: | 			else: | ||||||
| 				attributes = {} | 				attributes = {} | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue