| OLD | NEW |
| 1 # Copyright (c) 2010 Mitch Garnaat http://garnaat.org/ | 1 # Copyright (c) 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 self.name = value | 47 self.name = value |
| 48 elif name == 'Owner': | 48 elif name == 'Owner': |
| 49 self.owner = value | 49 self.owner = value |
| 50 elif name == 'Version': | 50 elif name == 'Version': |
| 51 self.version = value | 51 self.version = value |
| 52 elif name == 'CallerReference': | 52 elif name == 'CallerReference': |
| 53 self.caller_reference = value | 53 self.caller_reference = value |
| 54 else: | 54 else: |
| 55 setattr(self, name, value) | 55 setattr(self, name, value) |
| 56 | 56 |
| OLD | NEW |