core-extra/daemon/core/gui/errors.py
2020-01-10 15:32:16 -08:00

10 lines
257 B
Python

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