Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #71545
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <antoon.pardon@rece.vub.ac.be> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.011 |
| X-Spam-Evidence | '*H*': 0.98; '*S*': 0.00; 'received:134': 0.05; '(python': 0.07; "subject:' ": 0.07; 'bytes.': 0.09; 'resp': 0.09; 'ftplib': 0.16; 'subject:object': 0.16; 'subject:python3': 0.16; 'typeerror:': 0.16; 'import': 0.22; 'header:User-Agent:1': 0.23; 'skip:" 30': 0.26; 'host': 0.29; 'code': 0.31; 'file': 0.32; 'run': 0.32; '(most': 0.33; 'problem': 0.35; "can't": 0.35; 'something': 0.35; 'convert': 0.35; 'doing': 0.36; 'to:addr :python-list': 0.38; 'recent': 0.39; 'use.': 0.39; 'to:addr:python.org': 0.39; 'subject:Can': 0.60; 'user,': 0.69; 'pardon': 0.84 |
| X-IronPort-Anti-Spam-Filtered | true |
| X-IronPort-Anti-Spam-Result | Ap8EAPJRc1OGuA9G/2dsb2JhbABZg1WDQMQ4g0NVKgwCBRYLAgsDAgECAUsNCAKIPZxpjyCfFIYUgSqMOYNngUsBA5lRgT2FFYxBgzg |
| Date | Wed, 14 May 2014 13:23:46 +0200 |
| From | Antoon Pardon <antoon.pardon@rece.vub.ac.be> |
| User-Agent | Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Icedove/24.4.0 |
| MIME-Version | 1.0 |
| To | Pyton List <python-list@python.org> |
| Subject | python3; ftplib: TypeError: Can't convert 'bytes' object to str implicitly |
| Content-Type | text/plain; charset=UTF-8 |
| Content-Transfer-Encoding | 7bit |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.10000.1400066651.18130.python-list@python.org> (permalink) |
| Lines | 30 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1400066651 news.xs4all.nl 2907 [2001:888:2000:d::a6]:40704 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:71545 |
Show key headers only | View raw
This is the code I run (python 3.3)
host = ...
user = ...
passwd = ...
from ftplib import FTP
ftp = FTP(host, user, passwd)
ftp.mkd(b'NewDir')
ftp.rmd(b'NewDir')
This is the traceback
Traceback (most recent call last):
File "ftp-problem", line 9, in <module>
ftp.mkd(b'NewDir')
File "/usr/lib/python3.3/ftplib.py", line 612, in mkd
resp = self.voidcmd('MKD ' + dirname)
TypeError: Can't convert 'bytes' object to str implicitly
The problem is that I do something like this in a backup program.
I don't know the locales that other people use. So I manipulate
all file and directory names as bytes.
Am I doing something wrong?
--
Antoon Pardon
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
python3; ftplib: TypeError: Can't convert 'bytes' object to str implicitly Antoon Pardon <antoon.pardon@rece.vub.ac.be> - 2014-05-14 13:23 +0200
csiph-web