mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	Add a missing 'self,' to a super call in recently checked-in code.
This was reported in the IDLEFORK bug tracker as #754971.
This commit is contained in:
		
							parent
							
								
									7de3772b28
								
							
						
					
					
						commit
						8b76351934
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -89,7 +89,7 @@ def _fixresult(self, widget, result): | |||
|         if not widget.tk.wantobjects() and "multiple" in self.options: | ||||
|             # Need to split result explicitly | ||||
|             return self._fixresult(widget, widget.tk.splitlist(result)) | ||||
|         return _Dialog._fixresult(widget, result) | ||||
|         return _Dialog._fixresult(self, widget, result) | ||||
| 
 | ||||
| class SaveAs(_Dialog): | ||||
|     "Ask for a filename to save as" | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Guido van Rossum
						Guido van Rossum