mirror of
https://github.com/cheat/cheat.git
synced 2024-11-23 14:31:36 +01:00
Minor typo and pep8 quote fixes.
This commit is contained in:
parent
622b6991ba
commit
e651de5dde
6
cheat
6
cheat
@ -113,7 +113,7 @@ class CheatSheets(object):
|
|||||||
'must set your EDITOR environment variable '
|
'must set your EDITOR environment variable '
|
||||||
'to your favorite editor\'s path.')
|
'to your favorite editor\'s path.')
|
||||||
exit(1)
|
exit(1)
|
||||||
elif os.environ['EDITOR'] == "":
|
elif os.environ['EDITOR'] == '':
|
||||||
print >> sys.stderr, ('Your EDITOR environment variable is set '
|
print >> sys.stderr, ('Your EDITOR environment variable is set '
|
||||||
'to nothing, in order to create/edit a '
|
'to nothing, in order to create/edit a '
|
||||||
'cheatsheet your must set it to a valid '
|
'cheatsheet your must set it to a valid '
|
||||||
@ -139,7 +139,7 @@ class CheatSheets(object):
|
|||||||
else:
|
else:
|
||||||
subprocess.call(editor + [os.path.join(cs.cheat_dir, cheat)])
|
subprocess.call(editor + [os.path.join(cs.cheat_dir, cheat)])
|
||||||
except OSError, e:
|
except OSError, e:
|
||||||
print >> sys.stderr, ("Could not launch `%s` as your editor : %s"
|
print >> sys.stderr, ('Could not launch `%s` as your editor : %s'
|
||||||
% (editor[0], e.strerror))
|
% (editor[0], e.strerror))
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
@ -226,7 +226,7 @@ def main():
|
|||||||
parser_group = parser.add_mutually_exclusive_group()
|
parser_group = parser.add_mutually_exclusive_group()
|
||||||
parser_group.add_argument('sheet', metavar='cheatsheet',
|
parser_group.add_argument('sheet', metavar='cheatsheet',
|
||||||
action='store', type=str, nargs='?',
|
action='store', type=str, nargs='?',
|
||||||
help='Look at <cheatseet>')
|
help='Look at <cheatsheet>')
|
||||||
parser_group.add_argument('-e', '--edit', metavar='cheatsheet',
|
parser_group.add_argument('-e', '--edit', metavar='cheatsheet',
|
||||||
action=EditSheet, type=str, nargs=1,
|
action=EditSheet, type=str, nargs=1,
|
||||||
help='Edit <cheatsheet>')
|
help='Edit <cheatsheet>')
|
||||||
|
Loading…
Reference in New Issue
Block a user