Skip to content

Commit

Permalink
Add counter to URL list
Browse files Browse the repository at this point in the history
  • Loading branch information
ikoniaris committed Feb 18, 2014
1 parent c0964da commit ec236f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helper.py
Expand Up @@ -74,6 +74,6 @@ def print_args(args):

def print_urls(urls):
print "\n{URL list}:"
for url in urls:
print url
for i, url in enumerate(urls):
print str(i+1) + '. ' + url
print "\nTotal: %d URLs" % len(urls)

0 comments on commit ec236f9

Please sign in to comment.