Skip to content

Commit

Permalink
use mypy compat verson of version check
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Feb 8, 2018
1 parent f2553c9 commit b5096ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cwltest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
UNSUPPORTED_FEATURE = 33
DEFAULT_TIMEOUT = 900 # 15 minutes

if sys.version_info.major < 3:
if sys.version_info < (3, 0):
import subprocess32 as subprocess
else:
import subprocess
Expand Down

0 comments on commit b5096ab

Please sign in to comment.