mirror of
https://github.com/cheat/cheat.git
synced 2025-12-21 22:42:06 +01:00
Add hint to use sudo when creation fail of sheet.
This commit is contained in:
3
cheat
3
cheat
@@ -163,7 +163,8 @@ class CheatSheets(object):
|
|||||||
if os.access(sheet_path, os.W_OK):
|
if os.access(sheet_path, os.W_OK):
|
||||||
subprocess.call(editor + [os.path.join(cs.cheat_dir, cheat)])
|
subprocess.call(editor + [os.path.join(cs.cheat_dir, cheat)])
|
||||||
else:
|
else:
|
||||||
print >> sys.stderr, ("Couldn't create '%s' cheatsheet."
|
print >> sys.stderr, ("Couldn't create '%s' cheatsheet.\n"
|
||||||
|
"Please retry usig sudo."
|
||||||
% cheat)
|
% cheat)
|
||||||
exit(1)
|
exit(1)
|
||||||
except OSError, e:
|
except OSError, e:
|
||||||
|
|||||||
Reference in New Issue
Block a user