Skip to content

Commit

Permalink
Remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
andykee authored Nov 6, 2024
1 parent 85a03c9 commit 4f15690
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/pelican/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,9 @@ def build(inputdir, outputdir):

def git_commit_date(filename):
CMD = f'git log -1 --format=%ci {filename}'
print(CMD)
resp = subprocess.run(CMD, shell=True, capture_output=True, text=True)
if resp.stdout:
print(resp.stdout)
datestr, *_ = resp.stdout.split()
print(datestr)
print('')
return datestr


Expand Down

0 comments on commit 4f15690

Please sign in to comment.