Skip to content

Commit

Permalink
give credit to @hroncok for #656
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Nov 22, 2024
1 parent d90297a commit 29ad496
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ D: FreeBSD port maintainer
Contributors
============

N: Miro Hrončok
W: https://github.com/hroncok
D: 656

N: hakai
W: https://github.com/hakai
D: 613
Expand Down
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
Bug tracker at https://github.com/giampaolo/pyftpdlib/issues

Version: 2.0.2 - IN DEVELOPMENT
===============================

**Bug fixes**

* #656: Python 3.14 changed the default multiprocessing method for POSIX (sans
macOS) from fork to forkserver, breaking ``MultiprocessFTPServer`` class.
(patch by Miro Hrončok)

Version: 2.0.1 - 2024-10-22
===========================
Expand Down
2 changes: 1 addition & 1 deletion scripts/internal/check_broken_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def sanitize_url(url):

def find_urls(s):
matches = REGEX.findall(s) or []
return list(set([sanitize_url(x) for x in matches]))
return list({sanitize_url(x) for x in matches})


def parse_rst(fname):
Expand Down

0 comments on commit 29ad496

Please sign in to comment.