| OLD | NEW |
| 1 # Copyright (c) 2006-2010 Mitch Garnaat http://garnaat.org/ | 1 # Copyright (c) 2006-2010 Mitch Garnaat http://garnaat.org/ |
| 2 # Copyright (c) 2010, Eucalyptus Systems, Inc. | 2 # Copyright (c) 2010, Eucalyptus Systems, Inc. |
| 3 # All rights reserved. | 3 # All rights reserved. |
| 4 # | 4 # |
| 5 # Permission is hereby granted, free of charge, to any person obtaining a | 5 # Permission is hereby granted, free of charge, to any person obtaining a |
| 6 # copy of this software and associated documentation files (the | 6 # copy of this software and associated documentation files (the |
| 7 # "Software"), to deal in the Software without restriction, including | 7 # "Software"), to deal in the Software without restriction, including |
| 8 # without limitation the rights to use, copy, modify, merge, publish, dis- | 8 # without limitation the rights to use, copy, modify, merge, publish, dis- |
| 9 # tribute, sublicense, and/or sell copies of the Software, and to permit | 9 # tribute, sublicense, and/or sell copies of the Software, and to permit |
| 10 # persons to whom the Software is furnished to do so, subject to the fol- | 10 # persons to whom the Software is furnished to do so, subject to the fol- |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 class EC2RegionInfo(RegionInfo): | 26 class EC2RegionInfo(RegionInfo): |
| 27 """ | 27 """ |
| 28 Represents an EC2 Region | 28 Represents an EC2 Region |
| 29 """ | 29 """ |
| 30 | 30 |
| 31 def __init__(self, connection=None, name=None, endpoint=None): | 31 def __init__(self, connection=None, name=None, endpoint=None): |
| 32 from boto.ec2.connection import EC2Connection | 32 from boto.ec2.connection import EC2Connection |
| 33 RegionInfo.__init__(self, connection, name, endpoint, | 33 RegionInfo.__init__(self, connection, name, endpoint, |
| 34 EC2Connection) | 34 EC2Connection) |
| OLD | NEW |