Created
November 8, 2012 17:47
-
-
Save rubensayshi/4040340 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
| def copy(self, **kwargs): | |
| kwargs['base_image_name'] = kwargs['base_image_name'] or self.base_image_name | |
| kwargs['format'] = kwargs['format'] or self.format | |
| kwargs['size'] = kwargs['size'] or self.size | |
| kwargs['is_temp'] = kwargs['is_temp'] or self.is_temp | |
| newimage = Image(**kwargs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment