Skip to content

Commit

Permalink
Merge pull request #1 from orsonjones/master
Browse files Browse the repository at this point in the history
Regex "a-zA-z" was probably meant to be "a-zA-Z"
  • Loading branch information
mgedmin committed Dec 6, 2013
2 parents 93677b7 + dfda5df commit 0a1d166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/z3c/schema/baseurl/field.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


isValidBaseURL = re.compile(
r"[a-zA-z0-9+.-]+:" # scheme
r"[a-zA-Z0-9+.-]+:" # scheme
r"\S*$" # non space (should be pickier)
).match

Expand Down

0 comments on commit 0a1d166

Please sign in to comment.