git: add more aliases, fix lazy-checkin for py3.6

This commit is contained in:
2020-07-07 18:56:13 +00:00
parent 7cfb041646
commit 5362d39315
2 changed files with 7 additions and 3 deletions

View File

@@ -2,11 +2,10 @@
import argparse
import subprocess
import pathlib
def call_proc(cmd):
return subprocess.run(cmd, check=True, capture_output=True)
return subprocess.run(cmd, check=True, stdout=subprocess.PIPE)
def lazy_commit(all: bool = True, message: str = None):