Ubuntu Pastebin

Paste from smoser at Wed, 14 Jun 2017 18:17:02 +0000

Download as text
1
2
3
4
5
+    bad_files = [r for r in args.req_files if not os.path.isfile(r)]
+    if bad_files:
+        sys.stderr.write(
+            "Unable to find requirements files: %s\n" % ','.join(bad_files))
+        sys.exit(1)
Download as text