From 44c2b75b8da961cac1c837b8a81c1580abdba784 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Tue, 14 Mar 2017 13:36:29 -0400 Subject: [PATCH] fix runtime-fixer --- vendor/runtime-fixer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/runtime-fixer b/vendor/runtime-fixer index 4ee1e419..0162518e 100755 --- a/vendor/runtime-fixer +++ b/vendor/runtime-fixer @@ -4,7 +4,7 @@ import sys runtime_file = sys.argv[1] -with open(req_file, 'r') as f: +with open(runtime_file, 'r') as f: r = f.read().strip() with open(runtime_file, 'w') as f: -- GitLab