From dbf9f55bb32f011152d395db6e4b88eae52f0867 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 26 Mar 2009 16:16:11 +0100 Subject: [PATCH] Include .git suffix in gitweb list as well --- gitdump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitdump.py b/gitdump.py index ff8ff9e..1af12cf 100644 --- a/gitdump.py +++ b/gitdump.py @@ -86,7 +86,7 @@ FROM repositories AS r WHERE approved ORDER BY name""") # Check for publishing options here if web: - f.write("%s %s\n" % (urllib.quote_plus(name), urllib.quote_plus(owner))) + f.write("%s.git %s\n" % (urllib.quote_plus(name), urllib.quote_plus(owner))) df = open("%s/repos/%s.git/description" % (self.conf.get("paths", "githome"), name), "w") df.write(description) df.close() -- 2.39.5