Nicky Nicolson commited on
Commit
3e49a42
·
1 Parent(s): 7046e11

fix var name typo

Browse files
Files changed (1) hide show
  1. downloadartifact.py +1 -1
downloadartifact.py CHANGED
@@ -24,7 +24,7 @@ def main():
24
  parser.add_argument('outputfile', help='where to store downloaded file')
25
 
26
  args = parser.parse_args()
27
- artifactUrl = getArtifactUrl(args.url)
28
  print(artifact_url)
29
  getArtifact(artifactUrl, args.gh_token, args.outputfile)
30
 
 
24
  parser.add_argument('outputfile', help='where to store downloaded file')
25
 
26
  args = parser.parse_args()
27
+ artifact_url = getArtifactUrl(args.url)
28
  print(artifact_url)
29
  getArtifact(artifactUrl, args.gh_token, args.outputfile)
30