diff options
| -rw-r--r-- | libmproxy/console/common.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/libmproxy/console/common.py b/libmproxy/console/common.py index 2f143f01..bc8a2aad 100644 --- a/libmproxy/console/common.py +++ b/libmproxy/console/common.py @@ -252,7 +252,7 @@ def copy_flow(part, scope, flow, master, state):      try:          master.add_event(str(len(data)))          pyperclip.copy(data) -    except RuntimeError: +    except (RuntimeError, UnicodeDecodeError):          def save(k):              if k == "y":                  ask_save_path("Save data", data, master, state) | 
