Created
March 12, 2009 18:23
-
-
Save jyr/78220 to your computer and use it in GitHub Desktop.
This file contains 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
86c86 | |
< def __init__(self, name, email=None, password=None ): | |
--- | |
> def __init__(self, name, email=None, password=None, date=None, tags=None, format=None): | |
90a91,93 | |
> self.date = date | |
> self.tags = tags | |
> self.format = format | |
100c103,107 | |
< 'password' : self.password } | |
--- | |
> 'password' : self.password, | |
> 'group': self.name, | |
> 'date': self.date, | |
> 'tags': self.tags, | |
> 'format': self.format } | |
207a215,218 | |
> params['group'] = self.name | |
> params['date'] = self.date | |
> params['tags'] = self.tags | |
> params['format'] = self.format |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment