aboutsummaryrefslogtreecommitdiffstats
path: root/.be/bugs/0cad2ac6-76ef-4a88-abdf-b2e02de76f5c/comments/6a0080c4-d684-4c2c-afaa-c15cc43d68ad
Commit message (Collapse)AuthorAgeFilesLines
* Converted libbe.storage.vcs.base to new Storage format.W. Trevor King2009-12-132-9/+0
|
* Added missing author entries to some comments + cleanups.W. Trevor King2009-12-051-1/+1
|
* Added libbe/upgrade.py to handle upgrading on-disk bugdirs.W. Trevor King2009-08-311-16/+3
|
* Fixed 0cad bug with smaller fix.W. Trevor King2008-11-132-0/+22
Hubert Chathi's fix was confusing for me, so I made a simpler change. Seems to work so far. The problem was that os.path.dirname('filename') returns an empty string ('') if there are no directories in the filename. So when `git rev-parse --git-dir` returned '.git', os returned ''. Later programs didn't recognize '' as a valid directory and crashed. My fix returns '.' in this case, so we don't crash, and avoid having to use full paths. I'm not sure why I don't want to use full paths; they just give me bad vibes...