Skip to content

Commit

Permalink
temporary
Browse files Browse the repository at this point in the history
  • Loading branch information
amadolid committed Aug 14, 2023
1 parent f693b0e commit 356bfc6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion jaseci_core/jaseci/extens/act_lib/url.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ def is_valid(url: str = ""):
url_response = validators.url(url)
if isinstance(url_response, validators.ValidationFailure):
return False
except:
except Exception as e:
print("#############################")
print(e)
print("#############################")
return False

return True
Expand Down

0 comments on commit 356bfc6

Please sign in to comment.