We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92a3b6 commit f1eeeb3Copy full SHA for f1eeeb3
users.py
@@ -13,6 +13,6 @@
13
14
def get_user(name):
15
try:
16
- return (user for user in users if user["name" == name]).next()
+ return (user for user in users if user["name"] == name).next()
17
except:
18
print "\n User %s is not defined, enter a valid user.\n" %name
0 commit comments