Skip to content

Commit

Permalink
-typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aachenmax committed Feb 28, 2017
1 parent 281a417 commit fa1de2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def upload(user,token,repo,tag):
if filenameclean in upload_list:
#print('github-release','-v','upload','--security-token',token,'--user',user,'--repo',repo,'--tag',tag,'--name',filenameclean,'--file',filepathclean)
try:
subproces.check_call('github-release','-v','upload','--security-token',token,'--user',user,'--repo',repo,'--tag',tag,'--name',filenameclean,'--file',filepathclean,shell=True)
except subproces.CalledProcessError as e:
subprocess.check_call('github-release','-v','upload','--security-token',token,'--user',user,'--repo',repo,'--tag',tag,'--name',filenameclean,'--file',filepathclean,shell=True)
except subprocess.CalledProcessError as e:
print(str(e))


Expand Down

0 comments on commit fa1de2c

Please sign in to comment.