Skip to content

Commit

Permalink
Merge pull request #459 from davharris/Ww
Browse files Browse the repository at this point in the history
BBS file capitalization (fix #548)
  • Loading branch information
henrykironde committed Apr 20, 2016
2 parents 8ae5929 + e9b0c3e commit 288a662
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/bbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ def download(self, engine=None, debug=False):
# Weather table
if not os.path.isfile(engine.format_filename("weather_new.csv")):
engine.download_files_from_archive(self.urls["weather"],
["weather.csv"])
read = open(engine.format_filename("weather.csv"), "rb")
["Weather.csv"])
read = open(engine.format_filename("Weather.csv"), "rb")
write = open(engine.format_filename("weather_new.csv"), "wb")
print "Cleaning weather data..."
for line in read:
Expand Down
4 changes: 2 additions & 2 deletions scripts/bbs50stop.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ def download(self, engine=None, debug=False):
# Weather table
if not os.path.isfile(engine.format_filename("weather_new.csv")):
engine.download_files_from_archive(self.urls["weather"],
["weather.csv"])
read = open(engine.format_filename("weather.csv"), "rb")
["Weather.csv"])
read = open(engine.format_filename("Weather.csv"), "rb")
write = open(engine.format_filename("weather_new.csv"), "wb")
print "Cleaning weather data..."
for line in read:
Expand Down

0 comments on commit 288a662

Please sign in to comment.