Hashar has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/81908


Change subject: make-release had an unused local var 'length'
......................................................................

make-release had an unused local var 'length'

Comment out a variable to make pyflakes happy.

Change-Id: I2c1a3775737ae535f17c8dfef972fb9ca069121a
---
M scripts/make-release.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/sartoris refs/changes/08/81908/1

diff --git a/scripts/make-release.py b/scripts/make-release.py
index 3db9df3..c8af385 100644
--- a/scripts/make-release.py
+++ b/scripts/make-release.py
@@ -25,7 +25,7 @@
             match = re.search('^Version\s+(.*)', line.strip())
             if match is None:
                 continue
-            length = len(match.group(1))
+            #length = len(match.group(1))
             version = match.group(1).strip()
             if lineiter.next().count('-') != len(match.group(0)):
                 continue

-- 
To view, visit https://gerrit.wikimedia.org/r/81908
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2c1a3775737ae535f17c8dfef972fb9ca069121a
Gerrit-PatchSet: 1
Gerrit-Project: sartoris
Gerrit-Branch: master
Gerrit-Owner: Hashar <has...@free.fr>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to