Skip to content

Commit

Permalink
Fix: typo
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Lamirault <nicolas.lamirault@gmail.com>
  • Loading branch information
nlamirault committed Sep 6, 2023
1 parent d3e09f4 commit 71fce76
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions hack/policies.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
import coloredlogs
import requests

#datasource=github-tags depName=portefaix/portefaix-policies
policies_version = "v0.9.0"
policies_archive = "portefaix-policies-%s.zip" % policies_version
# datasource=github-tags depName=portefaix/portefaix-policies
version = "v0.9.0"
policies_archive = "portefaix-policies-%s.zip" % version
policies_url = (
"https://github.com/portefaix/portefaix-policies/archive/refs/tags/%s.zip"
% policies_version
% version
)
policies_directory = "portefaix-policies-%s" % policies_version.replace('v', '')
policies_directory = "portefaix-policies-%s" % version.replace('v', '')


logger = logging.getLogger(__name__)
Expand Down

0 comments on commit 71fce76

Please sign in to comment.