Skip to content
This repository has been archived by the owner on Aug 8, 2021. It is now read-only.

Commit

Permalink
Fixed broken steps
Browse files Browse the repository at this point in the history
  • Loading branch information
ygz213 committed Aug 8, 2021
1 parent fc4ff13 commit cb9f0bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ This is just a GUI that detects your file's real extension using the filetype mo

That bug is caused by Python. To fix, you should make a minor change on `webbrowser.py` (It is on `{PYTHON_PATH}/lib/webbrowser.py`. Steps:

**1.** Find `except (FileNotFoundError, subprocess.CalledProcessError):` in the code
**2.** Change it as `except (FileNotFoundError, subprocess.CalledProcessError, PermissionError) :`
**3.** Problem is now fixed. This is pre-added on next versions of Python.
1. Find `except (FileNotFoundError, subprocess.CalledProcessError):` in the code
2. Change it as `except (FileNotFoundError, subprocess.CalledProcessError, PermissionError) :`
3. Problem is now fixed. This is pre-added on next versions of Python.

Source: <https://bugs.python.org/issue41005>

Expand Down

0 comments on commit cb9f0bf

Please sign in to comment.