exception popup message now shows exc_type sometimes
fixes: QubesOS/qubes-issues#1394
This commit is contained in:
		
							parent
							
								
									e1685a18f1
								
							
						
					
					
						commit
						3d1cd783ec
					
				| @ -1985,8 +1985,10 @@ def handle_exception(exc_type, exc_value, exc_traceback): | |||||||
| 
 | 
 | ||||||
|     filename, line, dummy, dummy = traceback.extract_tb(exc_traceback).pop() |     filename, line, dummy, dummy = traceback.extract_tb(exc_traceback).pop() | ||||||
|     filename = os.path.basename(filename) |     filename = os.path.basename(filename) | ||||||
|  |     error = "%s: %s" % (exc_type.__name__, exc_value) | ||||||
|  |     error = error.replace('QubesException: ', '') | ||||||
|     message = ( |     message = ( | ||||||
|         "<b>%s</b>" % exc_value + |         "<b>%s</b>" % error + | ||||||
|         "<br><br><i>This is most likely a bug in the Qubes Manager</i>" |         "<br><br><i>This is most likely a bug in the Qubes Manager</i>" | ||||||
|     ) |     ) | ||||||
|     is_gui_thread = threading.currentThread().getName() == "QtMainThread" |     is_gui_thread = threading.currentThread().getName() == "QtMainThread" | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Brennan Novak
						Brennan Novak