mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
8 lines
102 B
Python
8 lines
102 B
Python
import sys
|
|
|
|
if sys.version_info >= (2,7):
|
|
import unittest
|
|
else:
|
|
import unittest2 as unittest
|
|
|