summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2010-04-21 00:21:26 -0400
committerMike Crute <mcrute@gmail.com>2010-04-21 00:21:26 -0400
commitbbe0c63ff1362318f1f1e31edefd780e7835463a (patch)
treee9d2b245dfec0fd09a644c41fb5f484035d92d35
parente74452aabeb77ab8ab8f50a350d77e4d9e6914a2 (diff)
downloadobalie-bbe0c63ff1362318f1f1e31edefd780e7835463a.tar.bz2
obalie-bbe0c63ff1362318f1f1e31edefd780e7835463a.tar.xz
obalie-bbe0c63ff1362318f1f1e31edefd780e7835463a.zip
Vim configs out of sync, fixing comments.
-rw-r--r--obalie/client.py2
-rw-r--r--obalie/commands/__init__.py2
-rw-r--r--obalie/commands/info.py3
-rw-r--r--obalie/exceptions.py2
-rw-r--r--obalie/log.py2
-rw-r--r--obalie/utils.py2
6 files changed, 6 insertions, 7 deletions
diff --git a/obalie/client.py b/obalie/client.py
index cc40122..13df1a0 100644
--- a/obalie/client.py
+++ b/obalie/client.py
@@ -2,7 +2,7 @@
2""" 2"""
3Subversion Client 3Subversion Client
4 4
5@author: Mike Crute (mcrute@ag.com) 5@author: Mike Crute (mcrute@gmail.com)
6@organization: SoftGroup Interactive, Inc. 6@organization: SoftGroup Interactive, Inc.
7@date: April 20, 2010 7@date: April 20, 2010
8""" 8"""
diff --git a/obalie/commands/__init__.py b/obalie/commands/__init__.py
index f0e3682..c92e112 100644
--- a/obalie/commands/__init__.py
+++ b/obalie/commands/__init__.py
@@ -2,7 +2,7 @@
2""" 2"""
3Subversion Commands 3Subversion Commands
4 4
5@author: Mike Crute (mcrute@ag.com) 5@author: Mike Crute (mcrute@gmail.com)
6@organization: SoftGroup Interactive, Inc. 6@organization: SoftGroup Interactive, Inc.
7@date: April 20, 2010 7@date: April 20, 2010
8""" 8"""
diff --git a/obalie/commands/info.py b/obalie/commands/info.py
index 5bd29fd..e9c8599 100644
--- a/obalie/commands/info.py
+++ b/obalie/commands/info.py
@@ -2,13 +2,12 @@
2""" 2"""
3Subversion Info 3Subversion Info
4 4
5@author: Mike Crute (mcrute@ag.com) 5@author: Mike Crute (mcrute@gmail.com)
6@organization: SoftGroup Interactive, Inc. 6@organization: SoftGroup Interactive, Inc.
7@date: April 20, 2010 7@date: April 20, 2010
8""" 8"""
9 9
10 10
11import os
12from xml.dom import pulldom 11from xml.dom import pulldom
13from obalie.utils import join_url 12from obalie.utils import join_url
14from obalie.commands import BaseCommand 13from obalie.commands import BaseCommand
diff --git a/obalie/exceptions.py b/obalie/exceptions.py
index c7cbb4d..c124ee9 100644
--- a/obalie/exceptions.py
+++ b/obalie/exceptions.py
@@ -2,7 +2,7 @@
2""" 2"""
3Subversion Client Exceptions 3Subversion Client Exceptions
4 4
5@author: Mike Crute (mcrute@ag.com) 5@author: Mike Crute (mcrute@gmail.com)
6@organization: SoftGroup Interactive, Inc. 6@organization: SoftGroup Interactive, Inc.
7@date: April 20, 2010 7@date: April 20, 2010
8""" 8"""
diff --git a/obalie/log.py b/obalie/log.py
index bf65996..640f17a 100644
--- a/obalie/log.py
+++ b/obalie/log.py
@@ -2,7 +2,7 @@
2""" 2"""
3Logging Utlities for obalie 3Logging Utlities for obalie
4 4
5@author: Mike Crute (mcrute@ag.com) 5@author: Mike Crute (mcrute@gmail.com)
6@organization: SoftGroup Interactive, Inc. 6@organization: SoftGroup Interactive, Inc.
7@date: April 20, 2010 7@date: April 20, 2010
8""" 8"""
diff --git a/obalie/utils.py b/obalie/utils.py
index 2d4be0e..a32da86 100644
--- a/obalie/utils.py
+++ b/obalie/utils.py
@@ -2,7 +2,7 @@
2""" 2"""
3Miscellaneous Utility Commands 3Miscellaneous Utility Commands
4 4
5@author: Mike Crute (mcrute@ag.com) 5@author: Mike Crute (mcrute@gmail.com)
6@organization: SoftGroup Interactive, Inc. 6@organization: SoftGroup Interactive, Inc.
7@date: April 20, 2010 7@date: April 20, 2010
8""" 8"""