From 85b80e7b115cc0f6c953933f99426c5f0a31aeac Mon Sep 17 00:00:00 2001 From: Bartosz Woronicz Date: Thu, 4 Dec 2014 16:45:17 +0100 Subject: [PATCH] only ref is supported --- gittle/gittle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gittle/gittle.py b/gittle/gittle.py index 42f4b58..6f75912 100644 --- a/gittle/gittle.py +++ b/gittle/gittle.py @@ -735,7 +735,7 @@ def checkout_all(self, commit_sha=None): return self._checkout_tree(commit_tree) def checkout(self, ref): - """Checkout a given ref or SHA + """Checkout a given ref """ self.repo.refs.set_symbolic_ref('HEAD', ref) commit_tree = self._commit_tree(ref)