Merge pull request #8612 from mjaschen-forks/devel

Homebrew module: Added `+` and `.` characters to the package name regex.
reviewable/pr18780/r1
Michael DeHaan 10 years ago
commit 246b589c22

@ -112,6 +112,8 @@ class Homebrew(object):
VALID_PACKAGE_CHARS = r'''
\w # alphanumeric characters (i.e., [a-zA-Z0-9_])
. # dots
\+ # plusses
- # dashes
'''

Loading…
Cancel
Save