John Vandenberg has uploaded a new change for review. https://gerrit.wikimedia.org/r/165460
Change subject: Use single quotes for __version__ $Id$ strings ...................................................................... Use single quotes for __version__ $Id$ strings All but three of the __version__ $Id$ strings use single quotes. This changes those three for consistency. Change-Id: I96a697f8a438207108785fae217c8f66a39d4426 --- M generate_family_file.py M pywikibot/editor.py M scripts/editarticle.py 3 files changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/pywikibot/core refs/changes/60/165460/1 diff --git a/generate_family_file.py b/generate_family_file.py index 5a8f6e5..78e663f 100644 --- a/generate_family_file.py +++ b/generate_family_file.py @@ -12,7 +12,7 @@ # # Distributed under the terms of the MIT license # -__version__ = "$Id$" +__version__ = '$Id$' # # system imports diff --git a/pywikibot/editor.py b/pywikibot/editor.py index e795928..0ab7de1 100644 --- a/pywikibot/editor.py +++ b/pywikibot/editor.py @@ -8,7 +8,7 @@ # # Distributed under the terms of the MIT license. # -__version__ = "$Id$" +__version__ = '$Id$' # import sys diff --git a/scripts/editarticle.py b/scripts/editarticle.py index 74af631..9e4e16a 100755 --- a/scripts/editarticle.py +++ b/scripts/editarticle.py @@ -15,7 +15,7 @@ # # Distributed under the terms of the MIT license. # -__version__ = "$Id$" +__version__ = '$Id$' # import os -- To view, visit https://gerrit.wikimedia.org/r/165460 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I96a697f8a438207108785fae217c8f66a39d4426 Gerrit-PatchSet: 1 Gerrit-Project: pywikibot/core Gerrit-Branch: master Gerrit-Owner: John Vandenberg <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
