From 2b644da4cad104415a196886a01ee023be8b3ab6 Mon Sep 17 00:00:00 2001 From: Yuichi TANIKAWA Date: Sat, 10 May 2014 18:13:16 +0900 Subject: [PATCH] Add dots to valid path characters --- library/packaging/homebrew | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/library/packaging/homebrew b/library/packaging/homebrew index 0dfc86096ff..1bf9a677c72 100644 --- a/library/packaging/homebrew +++ b/library/packaging/homebrew @@ -92,6 +92,7 @@ class Homebrew(object): \s # spaces : # colons {sep} # the OS-specific path separator + . # dots - # dashes '''.format(sep=os.path.sep) @@ -99,6 +100,7 @@ class Homebrew(object): \w # alphanumeric characters (i.e., [a-zA-Z0-9_]) \s # spaces {sep} # the OS-specific path separator + . # dots - # dashes '''.format(sep=os.path.sep) @@ -121,6 +123,7 @@ class Homebrew(object): - a string containing only: - alphanumeric characters - dashes + - dots - spaces - colons - os.path.sep @@ -145,6 +148,7 @@ class Homebrew(object): - a string containing only: - alphanumeric characters - dashes + - dots - spaces - os.path.sep '''