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 6a16728 commit 99a0a7cCopy full SHA for 99a0a7c
scripts/roundup-reminder
@@ -37,6 +37,8 @@ from roundup.mailer import Mailer
37
# open the instance
38
if len(sys.argv) != 2:
39
print('You need to specify an instance home dir')
40
+ sys.exit()
41
+
42
instance_home = sys.argv[1]
43
instance = instance.open(instance_home)
44
db = instance.open('admin')
@@ -69,7 +71,7 @@ def listKey(x):
69
71
70
72
# loop through all the users
73
for user_id in db.user.list():
- # make sure we care aboue this user
74
+ # make sure we care about this user
75
name = db.user.get(user_id, 'realname')
76
if name is None:
77
name = db.user.get(user_id, 'username')
0 commit comments