From 38d8dfa6b4df1b6f160cc65633ae146071010785 Mon Sep 17 00:00:00 2001 From: Stephen McQuay Date: Sat, 9 Feb 2013 19:13:35 -0800 Subject: [PATCH] reviewboard test branch --- func.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/func.py b/func.py index 6555e42..e320e9f 100644 --- a/func.py +++ b/func.py @@ -1,5 +1,10 @@ -from fabric.api import run +from fabric.api import run, cd def hello(): run("ls") + +def rb_test(): + with cd('/tmp/'): + run('pwd') + run('ls')