[issue17291] Login-data raising EOFError

2013-02-24 Thread Gregory P. Smith
Gregory P. Smith added the comment: File "/home/riley/pywikipedia/userinterfaces/terminal_interface_base.py", line 129, in input text = getpass.getpass('') you can't call getpass without stdin or a terminal and expect it to do anything. your problem is in the pywikipedia code, not Python'

[issue17291] Login-data raising EOFError

2013-02-24 Thread Riley
Riley added the comment: The script is being run from a cronjob with saved login data. And thus, there is no stdin for cronjobs as there's no attached terminal. Reopening. -- resolution: invalid -> status: closed -> open ___ Python tracker

[issue17291] Login-data raising EOFError

2013-02-24 Thread Gregory P. Smith
Gregory P. Smith added the comment: yeah that looks like stdin was closed or was /dev/null. -- resolution: -> invalid status: open -> closed ___ Python tracker ___ _

[issue17291] Login-data raising EOFError

2013-02-24 Thread R. David Murray
R. David Murray added the comment: My guess would be that stdin is closed. I doubt that it is a python problem. -- nosy: +r.david.murray ___ Python tracker ___ _

[issue17291] Login-data raising EOFError

2013-02-24 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue17291] Login-data raising EOFError

2013-02-24 Thread Riley
New submission from Riley: When running Pywikipediabot and retrieving a password I get the following error: Password for user RileyBot on wiktionary:en: /usr/lib/python2.7/getpass.py:83: GetPassWarning: Can not control echo on the terminal. passwd = fallback_getpass(prompt, stream) Warning: P