core-extra/daemon/core/gui/errors.py
2019-12-19 09:30:21 -08:00

8 lines
229 B
Python

from tkinter import messagebox
def show_grpc_error(e):
title = [x.capitalize() for x in e.code().name.lower().split("_")]
title = " ".join(title)
title = f"GRPC {title}"
messagebox.showerror(title, e.details())