Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Mar 21, 2013
1 parent 24fd79b commit a3e0a7d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 2 additions & 5 deletions integration/test_contrib.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import types

from fabric.api import env, run, local
from fabric.api import run, local
from fabric.contrib import files


class Integration(object):
def setup(self):
env.host_string = "127.0.0.1"
from util import Integration


def tildify(path):
Expand Down
6 changes: 6 additions & 0 deletions integration/util.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from fabric.api import env


class Integration(object):
def setup(self):
env.host_string = "127.0.0.1"

0 comments on commit a3e0a7d

Please sign in to comment.