Commit daabd7fa authored by Andreas Tille's avatar Andreas Tille
Browse files

Seems 2to3 was not successfully running - needs another manual change; upload to unstable

parent 0bc34fd4
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -116,7 +116,16 @@ Last-Update: Mon, 16 Dec 2019 08:27:49 +0100
         sys.exit(0)
 
     if compareOut:
@@ -110,15 +110,15 @@ def runTest(inArgPath,
@@ -103,22 +103,22 @@ def runTest(inArgPath,
             if copyOutput and pRep == 0:
                 shutil.copy2(tf, expectedOut)
             elif compareOut:
-                e = file(expectedOut, "rU")
-                o = file(tf, "rU")
+                e = open(expectedOut, "rU")
+                o = open(tf, "rU")
                 eit = iter(e)
                 oit = iter(o)
                 n = 1
                 while True:
                     try: