Skip to content

Commit 7f91ef5

Browse files
author
Richard Jones
committed
another module modernised
1 parent 121d9bb commit 7f91ef5

File tree

3 files changed

+167
-173
lines changed

3 files changed

+167
-173
lines changed

2to3-done.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ CAN'T VERIFY
66

77
TODO
88

9-
./roundup/backends/rdbms_common.py
109
./roundup/backends/sessions_dbm.py
1110
./roundup/backends/sessions_rdbms.py
1211
./roundup/backends/tsearch2_setup.py
@@ -154,3 +153,4 @@ DONE
154153
./roundup/backends/indexer_rdbms.py
155154
./roundup/backends/locking.py
156155
./roundup/backends/portalocker.py
156+
./roundup/backends/rdbms_common.py

roundup/backends/indexer_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def search(self, search_terms, klass, ignore={}):
8282
propspec[linkprop][nodeid] = 1
8383

8484
# retain only the meaningful entries
85-
for propname, idset in propspec.iteritems():
85+
for propname, idset in list(propspec.items()):
8686
if not idset:
8787
del propspec[propname]
8888

0 commit comments

Comments
 (0)