We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc16ce9 commit 2c04c57Copy full SHA for 2c04c57
main.py
@@ -465,7 +465,10 @@ def get_stats(github):
465
stats += '**' + translate['Timeline'] + '**\n\n'
466
branch_name = github.get_repo(f'{username}/{username}').default_branch
467
stats = stats + ' \n\n'
468
- stats = stats + "\n Last Updated on " + date.today()
+ today = date.today()
469
+ d1 = today.strftime("%d/%m/%Y")
470
+ stats = stats + "\n Last Updated on " + d1
471
+
472
return stats
473
474
0 commit comments