Esempio n. 1
0
 def get_submission_tag(self, course, team, tag_name):
     repo_path = self.__get_team_path(course, team)
     repo = LocalGitRepo(repo_path)
     
     tag = repo.get_tag(tag_name)
     
     if tag is None:
         return None
     else:
         return tag
Esempio n. 2
0
 def get_submission_tag(self, course, team, tag_name):
     repo_path = self.__get_team_path(course, team)
     repo = LocalGitRepo(repo_path)
     
     tag = repo.get_tag(tag_name)
     
     if tag is None:
         return None
     else:
         return tag