plum -> fig

This commit is contained in:
Aanand Prasad 2013-12-20 20:28:24 +00:00
commit 0cafdc9c6c
21 changed files with 33 additions and 33 deletions

6
fig/cli/errors.py Normal file
View file

@ -0,0 +1,6 @@
from textwrap import dedent
class UserError(Exception):
def __init__(self, msg):
self.msg = dedent(msg).strip()