LoremPizza commited on
Commit
d1fa84c
·
verified ·
1 Parent(s): 3eb5401

Update run.py

Browse files
Files changed (1) hide show
  1. run.py +1 -1
run.py CHANGED
@@ -63,8 +63,8 @@ def root():
63
  return "Hello, this is a Stremio Addon providing HTTPS Stream for Italian Movies/Series, to install it add /manifest.json to the url and then add it into the Stremio search bar"
64
 
65
  @app.get('/catalog/<type>/<id>.json')
66
- print(f"Debug: Received request for /catalog/",type,id)
67
  def addon_catalog(type, id):
 
68
  if type != "tv":
69
  print("Debug: Type is not 'tv'")
70
  raise HTTPException(status_code=404)
 
63
  return "Hello, this is a Stremio Addon providing HTTPS Stream for Italian Movies/Series, to install it add /manifest.json to the url and then add it into the Stremio search bar"
64
 
65
  @app.get('/catalog/<type>/<id>.json')
 
66
  def addon_catalog(type, id):
67
+ print(f"Debug: Received request for /catalog/",type,id)
68
  if type != "tv":
69
  print("Debug: Type is not 'tv'")
70
  raise HTTPException(status_code=404)