michaelmior commited on
Commit
e761a34
1 Parent(s): 2018fe1

Fix path to CSV when fetching history

Browse files
Files changed (1) hide show
  1. fetch_history.py +1 -1
fetch_history.py CHANGED
@@ -53,7 +53,7 @@ def main():
53
  session.mount("http://", adapter)
54
  session.mount("https://", adapter)
55
 
56
- with open("repos2.csv", "r") as csvfile:
57
  # Count number of rows and reset
58
  reader = csv.DictReader(csvfile)
59
  rows = sum(1 for row in reader)
 
53
  session.mount("http://", adapter)
54
  session.mount("https://", adapter)
55
 
56
+ with open("repos.csv", "r") as csvfile:
57
  # Count number of rows and reset
58
  reader = csv.DictReader(csvfile)
59
  rows = sum(1 for row in reader)