Skip to content

Commit

Permalink
Fixed input string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuray committed May 11, 2017
1 parent b6ed414 commit 2b53c0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import os

main_api = 'https://api.github.com/'
org = input('Enter organization name:')
repo = input('Enter repositoryname:')
org = raw_input('Enter organization name:')
repo = raw_input('Enter repositoryname:')
url = main_api + 'repos/' + org + '/' + repo + '/issues'
print(url)
response = requests.get(url)
Expand Down

0 comments on commit 2b53c0f

Please sign in to comment.