From d7dfff7f1ef342ac5e0fe2abd6873eea75b144e6 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 25 Nov 2003 17:33:58 +0000 Subject: [PATCH] Added __revision__ strings. --- src/Channel.py | 4 ++++ src/User.py | 4 ++++ src/fix.py | 2 ++ src/questions.py | 2 ++ src/repl.py | 4 ++++ src/template.py | 2 ++ 6 files changed, 18 insertions(+) diff --git a/src/Channel.py b/src/Channel.py index 812c08de1..95d5c30cd 100755 --- a/src/Channel.py +++ b/src/Channel.py @@ -34,6 +34,10 @@ Basic channel management commands. Many of these commands require their caller to have the .op capability. This plugin is loaded by default. """ +__revision__ = "$Id$" + +import fix + import time from itertools import imap diff --git a/src/User.py b/src/User.py index a1dcb96d9..0aeae9f92 100755 --- a/src/User.py +++ b/src/User.py @@ -33,6 +33,10 @@ Provides commands useful to users in general. This plugin is loaded by default. """ +__revision__ = "$Id$" + +import fix + import getopt import string diff --git a/src/fix.py b/src/fix.py index bc53735c4..24a151a02 100644 --- a/src/fix.py +++ b/src/fix.py @@ -33,6 +33,8 @@ Fixes stuff that Python should have but doesn't. """ +__revision__ = "$Id$" + __all__ = [] exported = ['ignore', 'catch', 'reviter', 'window', 'group', diff --git a/src/questions.py b/src/questions.py index d9699a71c..6e0ca1535 100644 --- a/src/questions.py +++ b/src/questions.py @@ -31,6 +31,8 @@ """Handles interactive questions; useful for wizards and whatnot.""" +__revision__ = "$Id$" + import textwrap from getpass import getpass as getPass diff --git a/src/repl.py b/src/repl.py index 1fb183e93..31e3a89cb 100644 --- a/src/repl.py +++ b/src/repl.py @@ -31,6 +31,10 @@ """Old REPL from back in the day. Deprecated.""" +__revision__ = "$Id$" + +import fix + import sys import traceback from cStringIO import StringIO diff --git a/src/template.py b/src/template.py index 046c904af..fd6e6477a 100755 --- a/src/template.py +++ b/src/template.py @@ -34,6 +34,8 @@ This is the template for bots. supybot-wizard uses this file to make customized startup files for bots. """ +__revision__ = "$Id$" + import re import os import sys