X-Git-Url: http://git.kaliko.me/?a=blobdiff_plain;f=sima%2Futils%2Futils.py;h=e3927fcd7cbff823dbda081cb2b5f561b56f25e2;hb=611f98994247324793027cae02d77e5a8efd0f42;hp=017af9fd4b96ded621c9a31bfec0c8affac98ac3;hpb=5fe20b6caffe162afe5be18e77fe40004d00c95e;p=mpd-sima.git diff --git a/sima/utils/utils.py b/sima/utils/utils.py index 017af9f..e3927fc 100644 --- a/sima/utils/utils.py +++ b/sima/utils/utils.py @@ -24,9 +24,9 @@ import traceback import sys -from argparse import (ArgumentError, Action) -from os import (environ, access, getcwd, W_OK, R_OK) -from os.path import (dirname, isabs, join, normpath, exists, isdir, isfile) +from argparse import ArgumentError, Action +from os import environ, access, getcwd, W_OK, R_OK +from os.path import dirname, isabs, join, normpath, exists, isdir, isfile def get_mpd_environ(): """ @@ -63,7 +63,6 @@ def exception_log(): log.info('Quiting now!') sys.exit(1) - # ArgParse Callbacks class Obsolete(Action): # pylint: disable=R0903 @@ -73,7 +72,7 @@ class Obsolete(Action): raise ArgumentError(self, 'obsolete argument') class FileAction(Action): - """Generic class to inherit from for ARgPArse action on file/dir + """Generic class to inherit from for ArgParse action on file/dir """ # pylint: disable=R0903 def __call__(self, parser, namespace, values, option_string=None):