Re: how to trouble shoot - RuntimeError: Open Failed

2013-09-06 Thread Neil Cerutti
On 2013-09-06, stas poritskiy wrote: > I am working on application. App is processing a list of files > in folders. Folders act as a NEW-LOOP. so if all files in one > folder had been worked on, file is then saved and next folder > is picked up. it works fine only if i have a SINGLE folder, > howe

Re: how to trouble shoot - RuntimeError: Open Failed

2013-09-06 Thread stas poritskiy
Guys, as i was writing a very detailed message with code samples, following the guide that Steven linked, i found the problem. a pretty lame one, actually. in my class that was processing the images, i created an object instance, via __INIT__ , self.data = attributes() but i was iterating throug

Re: how to trouble shoot - RuntimeError: Open Failed

2013-09-06 Thread Terry Reedy
On 9/6/2013 1:05 PM, stas poritskiy wrote: The code in development is mine, and i am using the API provided by a main developer. At the moment, i am not using any try/except functionality. here is the full Exception output: [CODE] Exception in Tkinter callback Traceback (most recent call last)

Re: how to trouble shoot - RuntimeError: Open Failed

2013-09-06 Thread stas poritskiy
The code in development is mine, and i am using the API provided by a main developer. At the moment, i am not using any try/except functionality. here is the full Exception output: [CODE] Exception in Tkinter callback Traceback (most recent call last): File "C:\Python27\32bit\lib\lib-tk\Tkint

how to trouble shoot - RuntimeError: Open Failed

2013-09-06 Thread stas poritskiy
hey guys, I am working on application. App is processing a list of files in folders. Folders act as a NEW-LOOP. so if all files in one folder had been worked on, file is then saved and next folder is picked up. it works fine only if i have a SINGLE folder, however, when another folder is there, i

Re: how to trouble shoot - RuntimeError: Open Failed

2013-09-06 Thread Steven D'Aprano
On Fri, 06 Sep 2013 08:00:13 -0700, stas poritskiy wrote: > hey guys, > I am working on application. App is processing a list of files in > folders. Folders act as a NEW-LOOP. so if all files in one folder had > been worked on, file is then saved and next folder is picked up. it > works fine only