From 48bef642261d5538b82a0f6ab865e6fbe0626ce8 Mon Sep 17 00:00:00 2001 From: Sebastien Bacher Date: Fri, 27 Jul 2007 10:46:10 +0200 Subject: [PATCH] use os.path.abspath to get the directory --- get-branches | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-branches b/get-branches index 95ab7a3..14fb1c4 100755 --- a/get-branches +++ b/get-branches @@ -15,7 +15,7 @@ def main(): print >> sys.stderr, usage sys.exit(1) - directory = os.path.abspath(os.path.expanduser(sys.argv[1])) + directory = os.path.abspath(sys.argv[1])) team = sys.argv[2] operation_type = "branch" if len(sys.argv) == 4: