diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-08-23 15:14:09 -0700 |
|---|---|---|
| committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-08-23 15:14:09 -0700 |
| commit | da02fc6e4191bdbbb2015b78f9c3fe5045bb0460 (patch) | |
| tree | 1007e11a6b3f5f7203b0fe228d2e60547b456a02 /nova/exception.py | |
| parent | 83856c9dd6e1f75e3db51574f3db2b4dc4922186 (diff) | |
| download | nova-da02fc6e4191bdbbb2015b78f9c3fe5045bb0460.tar.gz nova-da02fc6e4191bdbbb2015b78f9c3fe5045bb0460.tar.xz nova-da02fc6e4191bdbbb2015b78f9c3fe5045bb0460.zip | |
Fix not found exceptions to properly use ec2_ips for not found
Diffstat (limited to 'nova/exception.py')
| -rw-r--r-- | nova/exception.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nova/exception.py b/nova/exception.py index 66740019b..5b86059d8 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -146,6 +146,7 @@ class NovaException(Exception): message = _("An unknown exception occurred.") def __init__(self, **kwargs): + self.kwargs = kwargs try: self._error_string = self.message % kwargs |
