Skip to content

Commit

Permalink
Fix Repo Url for Bug Report
Browse files Browse the repository at this point in the history
  • Loading branch information
canewsin committed Mar 12, 2022
1 parent eb397cf commit 7ce118d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zeronet.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def displayErrorMessage(err, error_log_path):
res = ctypes.windll.user32.MessageBoxW(0, err_title, "ZeroNet error", MB_YESNOCANCEL | MB_ICONEXCLAIMATION)
if res == ID_YES:
import webbrowser
report_url = "https://github.com/HelloZeroNet/ZeroNet/issues/new?assignees=&labels=&template=bug-report.md&title=%s"
report_url = "https://github.com/ZeroNetX/ZeroNet/issues/new?assignees=&labels=&template=bug-report.md&title=%s"
webbrowser.open(report_url % urllib.parse.quote("Unhandled exception: %s" % err_message))
if res in [ID_YES, ID_NO]:
subprocess.Popen(['notepad.exe', error_log_path])
Expand Down

0 comments on commit 7ce118d

Please sign in to comment.