diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2015-05-06 14:01:15 -0700 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2015-05-06 14:01:15 -0700 |
commit | 99275639872bfa8c9aa62da790298a7b66bde4ef (patch) | |
tree | 636191ad0d6869e5a2bdcdaddaeb9fbea4497123 /pyblog | |
parent | e56f5d61c66c119f2b7a8111df50b2b19c41e5b0 (diff) | |
download | my_new_personal_website-99275639872bfa8c9aa62da790298a7b66bde4ef.tar.xz my_new_personal_website-99275639872bfa8c9aa62da790298a7b66bde4ef.zip |
improve Why Oh My Zsh is completely broken
Diffstat (limited to 'pyblog')
-rwxr-xr-x | pyblog | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -730,6 +730,7 @@ def preview(args): sigint_raised = False def sigint_mitigator(signum, frame): + """Translate SIGINT to setting the sigint_raised flag.""" nonlocal sigint_raised sigint_raised = True @@ -772,7 +773,8 @@ def main(): 1am). Therefore, one may want to retouch the timestamp before publishing.""") parser_new_post.add_argument("filename", - help="path or basename of the source file, e.g., 2015-05-05-new-blog-new-start.md") + help="path or basename of the source file, " + "e.g., 2015-05-05-new-blog-new-start.md") parser_new_post.set_defaults(func=touch) parser_generate = subparsers.add_parser( |