jenkins-bot has submitted this change and it was merged.
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(-)
Approvals: XZise: Looks good to me, approved jenkins-bot: Verified
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
pywikibot-commits@lists.wikimedia.org