summaryrefslogtreecommitdiffstats
path: root/layman/action.py
diff options
context:
space:
mode:
Diffstat (limited to 'layman/action.py')
-rw-r--r--layman/action.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/layman/action.py b/layman/action.py
index b7b36b6..f083ce5 100644
--- a/layman/action.py
+++ b/layman/action.py
@@ -47,7 +47,9 @@ class Fetch:
... 'cache' : cache,
... 'nocheck' : True,
... 'proxy' : None,
- ... 'quietness':3}
+ ... 'quietness':3,
+ ... 'svn_command':'/usr/bin/svn',
+ ... 'rsync_command':'/usr/bin/rsync'}
>>> a = Fetch(config)
>>> a.run()
0
@@ -261,7 +263,9 @@ class Info:
... 'info' : ['wrobel'],
... 'nocheck' : False,
... 'verbose': False,
- ... 'quietness':3}
+ ... 'quietness':3,
+ ... 'svn_command':'/usr/bin/svn',
+ ... 'rsync_command':'/usr/bin/rsync'}
>>> a = Info(config)
>>> a.rdb.cache()
>>> OUT.color_off()
@@ -335,7 +339,9 @@ class List:
... 'nocheck' : False,
... 'verbose': False,
... 'quietness':3,
- ... 'width':80}
+ ... 'width':80,
+ ... 'svn_command':'/usr/bin/svn',
+ ... 'rsync_command':'/usr/bin/rsync'}
>>> a = List(config)
>>> a.rdb.cache()
>>> OUT.color_off()