Browse Source

Merge pull request #2122 from dalf/fix_version_again

SearXNG version: YYYY.MM.DD without leading zero
Alexandre Flament 2 years ago
parent
commit
a8eb9d15e2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      searx/version.py

+ 1 - 1
searx/version.py

@@ -59,7 +59,7 @@ def get_git_url_and_branch():
 
 
 
 
 def get_git_version():
 def get_git_version():
-    git_commit_date_hash = subprocess_run(r"git show -s --date='format:%Y.%m.%d' --format='%cd+%h'")
+    git_commit_date_hash = subprocess_run(r"git show -s --date='format:%-Y.%-m.%-d' --format='%cd+%h'")
     tag_version = git_version = git_commit_date_hash
     tag_version = git_version = git_commit_date_hash
 
 
     # add "+dirty" suffix if there are uncommited changes except searx/settings.yml
     # add "+dirty" suffix if there are uncommited changes except searx/settings.yml