In <[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote: > if __name__ == "__main__": > bucket_name = raw_input('Name of the bucket you wish the files to be > placed into? ') > update_s3() > > > Basically I pipe some files into the script - so would this cause a > linebreak?
Yes of course. `raw_input()` is reading from `stdin` so the very first line you pipe in will be assigned to `bucket_name`. Ciao, Marc 'BlackJack' Rintsch -- http://mail.python.org/mailman/listinfo/python-list