Issue 2: Crash on startup
Status:  New
Owner: ----
Reported by cagnul...@gmail.com, Dec 22, 2010
What steps will reproduce the problem?
1. get the last svn
2. start it with python2.7

Traceback (most recent call last):
  File "flucso.py", line 64, in <module>
    main()
  File "flucso.py", line 36, in main
    Repository.load()
  File "/tmp/flucso/src/repository.py", line 55, in load
    if not os.path.exists(icp):
  File "/usr/lib/python2.7/genericpath.py", line 18, in exists
    os.stat(path)
TypeError: coercing to Unicode: need string or buffer, NoneType found

Dec 22, 2010
#1 cagnul...@gmail.com
i've changed this line in /tmp/flucso/src/repository.py in order to solve it

-if not os.path.exists(icp):
+if not os.path.exists(icp or ""):

Dec 22, 2010
Project Member #2 ggela...@gmail.com
thank you, I will update the repository asap.
Dec 22, 2010
#3 cagnul...@gmail.com
I've noticed some other problems related to python2.7; if you want I could fix them
Dec 26, 2010
Project Member #4 ggela...@gmail.com
yes please