zackfuqua / mediacomp-jes

Automatically exported from code.google.com/p/mediacomp-jes
0 stars 0 forks source link

calls to os.chdir() produces error #72

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. import os
2. path = os.getcwd()
3. os.chdir(path)

What is the expected output? What do you see instead?
I expect the chdir method to work and leave me in the same directory that 
getcwd() returned.

Instead I see the following: 

>>> import os
>>> path = os.getcwd()
>>> os.chdir(path)
The error was: /Applications/jes-4-3.app/Contents/Resources/Java
OS system call failed.
An error occurred while making an operating system call. Please tell a TA what 
you were doing when this happened, so we may correct it.
>>> 

What version of the product are you using? On what operating system?

Version 4.3 on a Mac OS 10.9.2

Please provide any additional information below.

Original issue reported on code.google.com by tothmich...@gmail.com on 22 May 2014 at 4:35