summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
f72ad3d)
Both directories are now obsoleted by .git/config file. This fixes
"make test" in StGIT with git 1.5.0-rc3.
Signed-off-by: Pavel Roskin <proski@gnu.org>
return config.sections_matching(r'remote\.(.*)\.url')
def __remotes_from_dir(dir):
return config.sections_matching(r'remote\.(.*)\.url')
def __remotes_from_dir(dir):
- return os.listdir(os.path.join(basedir.get(), dir))
+ d = os.path.join(basedir.get(), dir)
+ if os.path.exists(d):
+ return os.listdir(d)
+ else:
+ return None
def remotes_list():
"""Return the list of remotes in the repository
def remotes_list():
"""Return the list of remotes in the repository