Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(195)

Unified Diff: relatorio/tests/test_api.py

Issue 104580046: relatorio: Fixes for Python3.4 (Closed)
Patch Set: Cleanup Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: relatorio/tests/test_api.py
===================================================================
--- a/relatorio/tests/test_api.py
+++ b/relatorio/tests/test_api.py
@@ -29,7 +29,7 @@
class StubObject(object):
def __init__(self, **kwargs):
- for key, val in kwargs.iteritems():
+ for key, val in kwargs.items():
ced 2014/07/08 19:00:59 Useless.
setattr(self, key, val)

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b