From cd9594bc67bdefd5ffc6fa9b01f37f26e692ece7 Mon Sep 17 00:00:00 2001 From: riscy Date: Mon, 6 Sep 2021 11:45:29 -0700 Subject: [PATCH] rm outdated comment about having to specify the default branch --- melpazoid/melpazoid.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/melpazoid/melpazoid.py b/melpazoid/melpazoid.py index 8d0a68d..fcc0627 100644 --- a/melpazoid/melpazoid.py +++ b/melpazoid/melpazoid.py @@ -673,9 +673,6 @@ def _clone(repo: str, into: str, branch: str, fetcher: str = 'github') -> bool: os.makedirs(into, exist_ok=True) scm = 'hg' if fetcher == 'hg' else 'git' if scm == 'git': - # If a package's repository doesn't use the master branch, then the - # MELPA recipe must specify the branch using the :branch keyword - # https://github.com/melpa/melpa/pull/6712 options = ['--single-branch'] if branch: options += ['--branch', branch]