Skip to content

Commit

Permalink
Fix Symfony module
Browse files Browse the repository at this point in the history
  • Loading branch information
twkrol committed Oct 7, 2020
1 parent df94d1a commit 877e445
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions servers/symfony.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ def getEditions(template):
response = requests.get(url="https://symfony.com/releases.json")
editions = response.json()["supported_versions"]

for edition in editions:
for edition in list(editions):
item = copy.copy(template) #copy of Softver object
item.stable = True
item.edition = editions[edition]
item.edition = edition

#Looking for detailed edition information from custom url
response = requests.get(url="https://symfony.com/releases/"+ item.edition +".json")
Expand Down
4 changes: 2 additions & 2 deletions start.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
from datetime import datetime, date
import vergrabber

__version__ = '3.4.1'
__version__ = '3.4.2'
__author__ = 'Tomasz Krol'
__author_email__ = '[email protected]'

debug = False
debug_module = None
# debug = True
# debug_module = 'java'
# debug_module = 'symfony'

def dumper(obj):
if isinstance(obj, date) or isinstance(obj, datetime):
Expand Down

0 comments on commit 877e445

Please sign in to comment.