summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Dolbec <brian.dolbec@gmail.com>2011-01-16 22:39:47 -0800
committerBrian Dolbec <brian.dolbec@gmail.com>2011-02-11 02:49:14 -0800
commit5e5809bd76bcdab37a6f270a47aa57f5900d4723 (patch)
tree636ba5664117311dd83799abd612ea16876f07c5
parentae654d7a403eb2d018543a9034a408689f26484c (diff)
downloadlayman-5e5809bd76bcdab37a6f270a47aa57f5900d4723.tar.gz
layman-5e5809bd76bcdab37a6f270a47aa57f5900d4723.tar.bz2
layman-5e5809bd76bcdab37a6f270a47aa57f5900d4723.zip
slight code change to my modified base.
whitespace cleanup
-rw-r--r--layman/action.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/layman/action.py b/layman/action.py
index 5d8dfd5..7199054 100644
--- a/layman/action.py
+++ b/layman/action.py
@@ -166,7 +166,7 @@ class Sync:
OUT.info('\nSuccess:\n------\n', 3)
for i in success:
OUT.info(i, 3)
-
+
if warnings:
OUT.warn('\nWarnings:\n------\n', 2)
for i in warnings:
@@ -316,10 +316,10 @@ class Info:
* Contact : nobody@gentoo.org
* Type : Subversion; Priority: 10
* Quality : experimental
- *
+ *
* Description:
* Test
- *
+ *
0
'''
@@ -374,7 +374,7 @@ class List(object):
def _run(self, complain):
for summary, supported, official \
- in self.db.list(self.config['verbose'], self.config['width']):
+ in self.db.list(None, self.config['verbose'], self.config['width']):
# Is the overlay supported?
if supported:
# Is this an official overlay?
@@ -435,22 +435,22 @@ class ListRemote(List):
* Contact : nobody@gentoo.org
* Type : Subversion; Priority: 10
* Quality : experimental
- *
+ *
* Description:
* Test
- *
+ *
* *** This is no official gentoo overlay ***
- *
+ *
* wrobel-stable
* ~~~~~~~~~~~~~
* Source : rsync://gunnarwrobel.de/wrobel-stable
* Contact : nobody@gentoo.org
* Type : Rsync; Priority: 50
* Quality : experimental
- *
+ *
* Description:
* A collection of ebuilds from Gunnar Wrobel [wrobel@gentoo.org].
- *
+ *
0
'''
@@ -529,7 +529,7 @@ def main(config):
new_umask = int(umask, 8)
old_umask = os.umask(new_umask)
except Exception, error:
- OUT.die('Failed setting to umask "' + umask + '"!\nError was: '
+ OUT.die('Failed setting to umask "' + umask + '"!\nError was: '
+ str(error))
for i in actions: