Skip to content

Commit

Permalink
Use single quotes for strings in the Python inline script
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy committed Jun 16, 2022
1 parent 3dc4f6d commit b83c36c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

[Full changelog](https://github.com/mozilla/glean/compare/v50.1.0...main)

* Kotlin
* Fix bug in Glean Gradle plugin by using correct quoting in embedded Python script ([#2097](https://github.com/mozilla/glean/pull/2097))


# v50.1.0 (2022-06-15)

[Full changelog](https://github.com/mozilla/glean/compare/v50.0.1...v50.1.0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ else:
if found_version != expected_version:
if not offline:
if "git" in expected_version:
if 'git' in expected_version:
target=expected_version
else:
target=f'{module_name}=={expected_version}'
Expand Down

0 comments on commit b83c36c

Please sign in to comment.