summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2019-07-18 11:42:55 +0200
committerFlorian Bruhin <me@the-compiler.org>2019-07-18 12:03:39 +0200
commit4b6645612210934b72f1b6d360cf5594d83c43f3 (patch)
tree44ab2aea96bf63012661d8303d8e4c95998a2c24
parent8c006acf01dd6a82c632b906053df675d91d771c (diff)
downloadqutebrowser-4b6645612210934b72f1b6d360cf5594d83c43f3.tar.gz
qutebrowser-4b6645612210934b72f1b6d360cf5594d83c43f3.zip
update_version: Fix message
(cherry picked from commit d7e68a5326de8dbe49004faa615225ec47e578b4)
-rw-r--r--scripts/dev/update_version.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dev/update_version.py b/scripts/dev/update_version.py
index 2dc9b4d4b..41f9d554c 100644
--- a/scripts/dev/update_version.py
+++ b/scripts/dev/update_version.py
@@ -62,7 +62,7 @@ if __name__ == "__main__":
version = qutebrowser.__version__
print("Run the following commands to create a new release:")
- print("* Run `git push origin; git push v{v}`.".format(v=version))
+ print("* Run `git push origin; git push origin v{v}`.".format(v=version))
print("* If committing on minor branch, cherry-pick release commit to "
"master.")
print("* Create new release via GitHub (required to upload release "