mirror of
https://github.com/Erreur32/cheat.git
synced 2024-10-31 21:11:07 +01:00
Merge branch 'master' of https://github.com/ritchielincoln/cheat into ritchielincoln-master
* 'master' of https://github.com/ritchielincoln/cheat: give user the option to edit cheatsheet when trying to create an existing cheatsheet
This commit is contained in:
commit
64cba079f9
6
cheat
6
cheat
@ -87,7 +87,11 @@ def edit_cheatsheet(cheat, cheatsheets):
|
|||||||
def create_cheatsheet(cheat, cheatsheets):
|
def create_cheatsheet(cheat, cheatsheets):
|
||||||
"Create a new cheatsheet."
|
"Create a new cheatsheet."
|
||||||
if cheat in cheatsheets:
|
if cheat in cheatsheets:
|
||||||
print ('Cheatsheet "%s" already exists' % cheat)
|
print ('Cheatsheet "%s" already exists...' % cheat)
|
||||||
|
ans = raw_input('Would you like to edit cheatsheet for "%s" (Y/N)? ' % cheat)
|
||||||
|
if ans.lower() in ['y', 'yes']:
|
||||||
|
edit_cheatsheet(cheat, cheatsheets)
|
||||||
|
else:
|
||||||
exit()
|
exit()
|
||||||
|
|
||||||
import cheatsheets as cs
|
import cheatsheets as cs
|
||||||
|
Loading…
Reference in New Issue
Block a user