Commit 66895ce4 authored by Christopher Petrilli's avatar Christopher Petrilli

Cleaned up use of not.

parent 6daa42b5
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
"""Simple column indices""" """Simple column indices"""
__version__='$Revision: 1.17 $'[11:-2] __version__='$Revision: 1.18 $'[11:-2]
from Globals import Persistent from Globals import Persistent
...@@ -249,7 +249,7 @@ class UnIndex(Persistent, Implicit): ...@@ -249,7 +249,7 @@ class UnIndex(Persistent, Implicit):
else: else:
return None return None
if not type(keys) in (ListType, TupleType): if type(keys) not in (ListType, TupleType):
keys = [keys] keys = [keys]
print "XXX," print "XXX,"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment