aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2011-05-12 16:19:41 -0400
committerW. Trevor King <wking@drexel.edu>2011-05-12 16:19:41 -0400
commitc56922285530fb95768998bffef176bad53d1d26 (patch)
treeeddfc2c13e5b5c2fa5a5800b7bf4668c3d3d06ed /libbe/storage
parent538c14cbae7a595539358d934fba6f014422d27e (diff)
downloadbugseverywhere-c56922285530fb95768998bffef176bad53d1d26.tar.gz
Remove form feeds (for compatibility with 2to3).
Diffstat (limited to 'libbe/storage')
-rw-r--r--libbe/storage/vcs/arch.py2
-rw-r--r--libbe/storage/vcs/base.py2
-rw-r--r--libbe/storage/vcs/bzr.py2
-rw-r--r--libbe/storage/vcs/darcs.py2
-rw-r--r--libbe/storage/vcs/git.py2
-rw-r--r--libbe/storage/vcs/hg.py2
-rw-r--r--libbe/storage/vcs/monotone.py2
7 files changed, 7 insertions, 7 deletions
diff --git a/libbe/storage/vcs/arch.py b/libbe/storage/vcs/arch.py
index 6c519c4..f0c0a29 100644
--- a/libbe/storage/vcs/arch.py
+++ b/libbe/storage/vcs/arch.py
@@ -437,7 +437,7 @@ class Arch(base.VCS):
def _vcs_changed(self, revision):
return self._parse_diff(self._diff(revision))
-
+
if libbe.TESTING == True:
base.make_vcs_testcase_subclasses(Arch, sys.modules[__name__])
diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py
index 3ff6e7e..8d2ab60 100644
--- a/libbe/storage/vcs/base.py
+++ b/libbe/storage/vcs/base.py
@@ -1003,7 +1003,7 @@ class VCS (libbe.storage.base.VersionedStorage):
libbe.storage.STORAGE_VERSION+'\n')
self._vcs_add(self._u_rel_path(path))
-
+
if libbe.TESTING == True:
class VCSTestCase (unittest.TestCase):
"""
diff --git a/libbe/storage/vcs/bzr.py b/libbe/storage/vcs/bzr.py
index 9464d1d..17096ce 100644
--- a/libbe/storage/vcs/bzr.py
+++ b/libbe/storage/vcs/bzr.py
@@ -378,7 +378,7 @@ class Bzr(base.VCS):
def _vcs_changed(self, revision):
return self._parse_diff(self._diff(revision))
-
+
if libbe.TESTING == True:
base.make_vcs_testcase_subclasses(Bzr, sys.modules[__name__])
diff --git a/libbe/storage/vcs/darcs.py b/libbe/storage/vcs/darcs.py
index 4a19d1d..65e4263 100644
--- a/libbe/storage/vcs/darcs.py
+++ b/libbe/storage/vcs/darcs.py
@@ -402,7 +402,7 @@ class Darcs(base.VCS):
def _vcs_changed(self, revision):
return self._parse_diff(self._diff(revision))
-
+
if libbe.TESTING == True:
base.make_vcs_testcase_subclasses(Darcs, sys.modules[__name__])
diff --git a/libbe/storage/vcs/git.py b/libbe/storage/vcs/git.py
index 6de1d56..3802928 100644
--- a/libbe/storage/vcs/git.py
+++ b/libbe/storage/vcs/git.py
@@ -265,7 +265,7 @@ class Git(base.VCS):
def _vcs_changed(self, revision):
return self._parse_diff(self._diff(revision))
-
+
if libbe.TESTING == True:
base.make_vcs_testcase_subclasses(Git, sys.modules[__name__])
diff --git a/libbe/storage/vcs/hg.py b/libbe/storage/vcs/hg.py
index d610352..e8a0214 100644
--- a/libbe/storage/vcs/hg.py
+++ b/libbe/storage/vcs/hg.py
@@ -251,7 +251,7 @@ class Hg(base.VCS):
def _vcs_changed(self, revision):
return self._parse_diff(self._diff(revision))
-
+
if libbe.TESTING == True:
base.make_vcs_testcase_subclasses(Hg, sys.modules[__name__])
diff --git a/libbe/storage/vcs/monotone.py b/libbe/storage/vcs/monotone.py
index e99a6ec..1dbb34d 100644
--- a/libbe/storage/vcs/monotone.py
+++ b/libbe/storage/vcs/monotone.py
@@ -366,7 +366,7 @@ class Monotone (base.VCS):
def _vcs_changed(self, revision):
return self._parse_diff(self._diff(revision))
-
+
if libbe.TESTING == True:
base.make_vcs_testcase_subclasses(Monotone, sys.modules[__name__])