shallow clone initially
1 files changed, 1 insertions(+), 1 deletions(-) M couchbot.py
M couchbot.py +1 -1
@@ 23,7 23,7 @@ print "Releases : %s" % bot.release_bran if not os.path.isdir(bot.local): os.makedirs(bot.local) - subprocess.check_call(["hg", "clone", bot.remote, bot.local]) + subprocess.check_call(["hg", "clone", "-r", "1", bot.remote, bot.local]) def popen_gen(cwd, args): arg_str = map(str, args)