mirror of
https://github.com/docker/compose.git
synced 2025-07-02 03:14:26 +02:00
* Moved requirements*.txt files to proper spec definitions in setup.py * Added a new fig.compat module to store some compatibility code
8 lines
165 B
Python
8 lines
165 B
Python
from __future__ import absolute_import
|
|
from textwrap import dedent
|
|
|
|
|
|
class UserError(Exception):
|
|
def __init__(self, msg):
|
|
self.msg = dedent(msg).strip()
|