Created
January 15, 2014 02:01
-
-
Save ingenthr/8429478 to your computer and use it in GitHub Desktop.
to get syntax highlighting for a screenshot
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
""" Retrieve the user to change the email address """ | |
user = cb.get("ingenthr") | |
""" Change the email and store the user """ | |
user.value['email'] = "[email protected]" | |
cb.set(user.key, user.value, cas=user.cas) # concurrent safe! | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment