Skip to content

Commit e0c97e3

Browse files
committed
Fix run_travis_make_task.py
1 parent 5a47405 commit e0c97e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/hypothesistooling.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ def tags():
4040

4141
ROOT = subprocess.check_output([
4242
'git', 'rev-parse', '--show-toplevel']).decode('ascii').strip()
43-
SRC = os.path.join(ROOT, 'src')
43+
SRC = os.path.join(ROOT, 'hypothesis-python', 'src')
4444

4545
assert os.path.exists(SRC)
4646

4747

4848
__version__ = None
4949
__version_info__ = None
5050

51-
VERSION_FILE = os.path.join(ROOT, 'src/hypothesis/version.py')
51+
VERSION_FILE = os.path.join(SRC, 'hypothesis/version.py')
5252

5353
with open(VERSION_FILE) as o:
5454
exec(o.read())

0 commit comments

Comments
 (0)