diff --git a/src/updatenotif.py b/src/updatenotif.py index 26f11ce..55c295d 100644 --- a/src/updatenotif.py +++ b/src/updatenotif.py @@ -15,9 +15,7 @@ async def git_notifications_update(): if fetching_git == 0: os.system("printf 'For apply tap button Get update and restart bot\nChanges:\n' > upd_info") commits = os.popen( - "git log --pretty=format:'%h %s%n%b' HEAD..origin/$(git rev-parse --abbrev-ref HEAD)").read() - os.popen( - "git log --pretty=format:'%h %s%n%b' HEAD..origin/$(git rev-parse --abbrev-ref HEAD) >> upd_info") + "git log --pretty=format:'%h %s%n%b' HEAD..origin/$(git rev-parse --abbrev-ref HEAD) | tee upd_info").read() if len(commits) <= 5: logger.info('updates not found, nothing to do') else: