-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#209 big replace (screenName --> username)
- Loading branch information
1 parent
27ff12c
commit 839b805
Showing
63 changed files
with
151 additions
and
158 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ def createDummyUserRandom(login, password): | |
random_login = '%s_%s'%(login, randomnum) | ||
user = User.objects.create_user(random_login, random_login+'@gogogo.com', password) | ||
userinfo = UserInfo.newUserInfo(user) | ||
userinfo.screenName = login+' Screen' | ||
userinfo.realName = login+' Real' | ||
userinfo.save() | ||
return user | ||
|
@@ -22,7 +21,6 @@ def create_dummy_sponsor(): | |
randomnum = randint(0,100000) | ||
user = User.objects.create_user('userone_%s'%randomnum, 'userone_%[email protected]'%randomnum, 'abcdef') | ||
userinfo = UserInfo.newUserInfo(user) | ||
userinfo.screenName = 'User One' | ||
userinfo.realName = 'User One' | ||
userinfo.save() | ||
return user | ||
|
@@ -31,7 +29,6 @@ def create_dummy_programmer(): | |
randomnum = randint(0,100000) | ||
user = User.objects.create_user('usertwo_%s'%randomnum, 'usertwo_%[email protected]'%randomnum, 'abcdef') | ||
userinfo = UserInfo.newUserInfo(user) | ||
userinfo.screenName = 'User Two' | ||
userinfo.realName = 'User Two' | ||
userinfo.save() | ||
return user | ||
|
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
Oops, something went wrong.