Hi,
I've cloned the git repo and I was trying to test aranduka on osx.
I can't run the project because of this error:
Lion:src leopard$ python main.py
Traceback (most recent call last):
File "main.py", line 5, in <module>
import models
File "/Users/leopard/desarrollo/pruebas/aranduka/src/models.py",
line 10, in <module>
import utils
File "/Users/leopard/desarrollo/pruebas/aranduka/src/utils.py", line
75, in <module>
os.makedir(P)
AttributeError: 'module' object has no attribute 'makedir'
I've checked the line in utils.py and it is:
os.makedir(P)
I went to os doc to see if there is something special about osx that I
should take care of but I can't find "makedir" function, there is
"makedirs" and "mkdir"
http://docs.python.org/2/library/os.html
I have python 2.7.1.
Regards
Mario