D:\Python24>ad-attr.py
Traceback (most recent call last):
 File "D:\Python24\ad-attr.py", line 32, in ?
   for k, v in ad_dict(user):
ValueError: too many values to unpack


Try this instead ... I think it should help:

<code>

for k,v in ad_dict(user).items():

</code>

in 2.3 and newer, the preferred function is 'iteritems()' instead of 'items()'. Faster, less mem use, etc.
_______________________________________________
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to