X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/bec7726668d737f8bc4242372d9fb542339654e0..fba895f5f12a652c248b0fd02b7c41f8342cfbdc:/stgit/git.py diff --git a/stgit/git.py b/stgit/git.py index e30b959..c7cc6a7 100644 --- a/stgit/git.py +++ b/stgit/git.py @@ -23,6 +23,7 @@ import sys, os, popen2, re, gitmergeonefile from stgit import basedir from stgit.utils import * from stgit.config import config +from sets import Set # git exception class class GitException(Exception): @@ -913,9 +914,9 @@ def remotes_list(): """Return the list of remotes in the repository """ - return set(__remotes_from_config()) | \ - set(__remotes_from_dir('remotes')) | \ - set(__remotes_from_dir('branches')) + return Set(__remotes_from_config()) | \ + Set(__remotes_from_dir('remotes')) | \ + Set(__remotes_from_dir('branches')) def remotes_local_branches(remote): """Returns the list of local branches fetched from given remote