Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Documentation, removes a couple of issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Sep 19, 2019
1 parent 177dbe3 commit f342e2b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
12 changes: 11 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,19 @@
History
=======

current - 2019-08-26 - 0.00Mb
current - 2019-09-19 - 0.00Mb
=============================

* `273`: Extend FTP functionalities to SFTP (2019-09-19)
* `272`: Improves df2rst by splitting into columns to have smaller dataframes to display (2019-09-05)
* `271`: Add parameter split to function df2rst to introduce section in the output (2019-09-05)
* `270`: Adds a function to zoom in, zoom out images + command line (2019-09-01)
* `269`: Fix github links if the sources are not inside a subfolder src (2019-09-01)
* `268`: Fix bool parsing in create_cli_parser (2019-08-27)

1.9.3192 - 2019-08-26 - 2.05Mb
==============================

* `267`: Skips a given list of issues when producing the history (2019-08-26)
* `266`: add option to local_jenkins to specify a different jenkins server (2019-08-25)

Expand Down
9 changes: 4 additions & 5 deletions src/pyquickhelper/filehelper/transfer_api_ftp.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,22 @@

class TransferAPIFtp(TransferAPI):
"""
defines an API to transfer files over a remote location
through FTP
Defines an API to transfer files over a remote location
through :epkg:`FTP`.
"""

def __init__(self, site, login, password, root="backup", fLOG=noLOG):
"""
constructor
@param site website
@param login login
@param password password
@param root root on the website
@param ftps protocol, see @see cl TransferFTP
@param fLOG logging function
"""
TransferAPI.__init__(self, fLOG=fLOG)
self._ftp = TransferFTP(
site, login, password, fLOG=fLOG) if site else MockTransferFTP(fLOG=fLOG)
site, login, password, fLOG=fLOG, ftps=ftps) if site else MockTransferFTP(fLOG=fLOG)
self._root = root

def connect(self):
Expand Down
3 changes: 2 additions & 1 deletion src/pyquickhelper/loghelper/history_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def enumerate_closed_issues(owner, repo, since=None, issues=None,
number = content['number']
if closed < since:
break
if "[WIP]" not in title and "[remove]" not in title and "[removed]" not in title:
if ("[WIP]" not in title and "[remove]" not in title and
"[removed]" not in title and "[won't fix]" not in title):
yield number, closed, title


Expand Down

0 comments on commit f342e2b

Please sign in to comment.