Created
May 22, 2013 18:12
-
-
Save hub-cap/5629650 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/reddwarf/extensions/mysql/common.py b/reddwarf/extensions/mysql/common.py | |
| index b4059ff..f46f465 100644 | |
| --- a/reddwarf/extensions/mysql/common.py | |
| +++ b/reddwarf/extensions/mysql/common.py | |
| @@ -52,7 +52,7 @@ def populate_users(users): | |
| def unquote_user_host(user_hostname): | |
| - unquoted = unquote(user_hostname) | |
| + unquoted = unquote(user_hostname).replace(r'\.', '.') | |
| if '@' not in unquoted: | |
| return unquoted, '%' | |
| if unquoted.endswith('@'): | |
| diff --git a/tools/pip-requires b/tools/pip-requires | |
| index 94a76cd..f29bdee 100644 | |
| --- a/tools/pip-requires | |
| +++ b/tools/pip-requires | |
| @@ -2,7 +2,7 @@ SQLAlchemy>=0.7.8,<=0.7.9 | |
| eventlet | |
| extras | |
| kombu==1.5.1 | |
| -routes | |
| +routes>=1.13 | |
| WebOb | |
| PasteDeploy | |
| paste |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment