diff options
-rw-r--r-- | paramiko/sftp_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/sftp_client.py b/paramiko/sftp_client.py index 07fe616a..059b5aa1 100644 --- a/paramiko/sftp_client.py +++ b/paramiko/sftp_client.py @@ -271,7 +271,7 @@ class SFTPClient (BaseSFTP): @type mode: int """ path = self._adjust_cwd(path) - self._log(DEBUG, 'mkdir(%r)' % path) + self._log(DEBUG, 'mkdir(%r, %r)' % (path, mode)) attr = SFTPAttributes() attr.st_mode = mode self._request(CMD_MKDIR, path, attr) |