diff options
| author | Jason Koelker <jason@koelker.net> | 2011-07-29 16:40:42 -0500 |
|---|---|---|
| committer | Jason Koelker <jason@koelker.net> | 2011-07-29 16:40:42 -0500 |
| commit | 36846b40016a27b5f9e0762273de532f4e0e10cd (patch) | |
| tree | 18ea9935eb07e5eaf915803c410bed211e416f55 | |
| parent | 99db7ffaeaba067f2914c59423bb1a953f860e57 (diff) | |
You see what happens Danny when you forget to close the parenthesis
| -rw-r--r-- | nova/db/sqlalchemy/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/db/sqlalchemy/api.py b/nova/db/sqlalchemy/api.py index 066fbd98a..ae8b9685a 100644 --- a/nova/db/sqlalchemy/api.py +++ b/nova/db/sqlalchemy/api.py @@ -1681,7 +1681,7 @@ def network_get_by_cidr(context, cidr): session = get_session() result = session.query(models.Network).\ filter(or_(models.Network.cidr == cidr, - models.Network.cidr_v6 == cidr).first() + models.Network.cidr_v6 == cidr)).first() if not result: raise exception.NetworkNotFoundForCidr(cidr=cidr) |
