Skip to content

Commit 629cab6

Browse files
committed
no pathlib in python2
1 parent a1ac319 commit 629cab6

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

test/utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import sys
22
import subprocess
3-
import pathlib
43
import re
54

65

@@ -68,7 +67,7 @@ def __str__(self):
6867

6968
class OTF2_Trace:
7069
def __init__(self, trace_path):
71-
self.path = pathlib.Path(trace_path)
70+
self.path = trace_path
7271
self.trace, self.std_err = call_otf2_print(self.path)
7372
assert self.std_err == ""
7473

0 commit comments

Comments
 (0)