Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gcerretani committed Apr 11, 2019
1 parent 1989554 commit e8803c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions antenati.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def main():
splitting = re.split('[_/?.]', url_parser.get_next())

str_comune = splitting[10].replace('+', '_')
str_type = splitting[11]
str_year = splitting[12]
str_type = splitting[11].replace('+', '_')
str_year = splitting[12].replace('+', '_')
foldername = '_'.join([str_comune, str_type, str_year])

if os.path.exists(foldername):
Expand Down

0 comments on commit e8803c1

Please sign in to comment.