updated files names

This commit is contained in:
Alvaro Andrés Rodríguez Scelza 2019-06-02 02:50:38 -03:00
parent 41f01dd70a
commit ad0f5863ed
26 changed files with 0 additions and 0 deletions

View file

@ -1,9 +0,0 @@
# -*- coding: utf-8 -*-
import subprocess
def get_current_branch_name():
output = subprocess.check_output(['git', 'symbolic-ref', 'HEAD'])
output = output.splitlines()
head_branches = output[0]
return head_branches.strip().split('/')[-1]