diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2010-10-23 00:41:27 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2010-10-23 00:41:27 +0100 |
commit | dfa1c7f32cb96796976cc8edb14fd5b19a17a3b2 (patch) | |
tree | bba14ed6ca05f6631e1c9ccfb4f89cd95574052a /pykolab | |
parent | 3bfb67e380f45fe5e78b3ffe6896644de0c172b7 (diff) | |
download | pykolab-dfa1c7f32cb96796976cc8edb14fd5b19a17a3b2.tar.gz |
Fix typo
Diffstat (limited to 'pykolab')
-rw-r--r-- | pykolab/tests/create-contacts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pykolab/tests/create-contacts.py b/pykolab/tests/create-contacts.py index f3b7173..b58f4fa 100644 --- a/pykolab/tests/create-contacts.py +++ b/pykolab/tests/create-contacts.py @@ -39,7 +39,7 @@ if __name__ == "__main__": for contact in xrange(num): uid = "%s.%s" %(str(random.randint(1000000000,9999999999)),str(random.randint(0,999)).zfill(3)) if not uid in uid_alloc: - uid_alloc.append(uid): + uid_alloc.append(uid) else: continue |