aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar Jon Bernard <jbernard@jbernard.io> 2016-10-12 15:45:36 -0400
committerGravatar Jon Bernard <jbernard@jbernard.io> 2016-10-12 15:45:36 -0400
commit682c61eff17da66a94d10dcd680280745774e3fd (patch)
treeb6b08ca29b0c0ab989fba7300095e3727e53345b /tests
parente94accc4c6d00f8b496dcd431b6bf83b61afa00d (diff)
downloaddotfiles-682c61eff17da66a94d10dcd680280745774e3fd.tar.gz
dotfiles-682c61eff17da66a94d10dcd680280745774e3fd.tar.bz2
dotfiles-682c61eff17da66a94d10dcd680280745774e3fd.zip
Cleanup exception imports
Diffstat (limited to 'tests')
-rw-r--r--tests/test_dotfile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_dotfile.py b/tests/test_dotfile.py
index b2dcd28..4d81c6c 100644
--- a/tests/test_dotfile.py
+++ b/tests/test_dotfile.py
@@ -2,8 +2,8 @@ import pytest
import py.path
from dotfiles.dotfile import Dotfile
-from dotfiles.exceptions import IsSymlink, NotASymlink
-from dotfiles.exceptions import TargetExists, TargetMissing, Exists
+from dotfiles.exceptions import \
+ IsSymlink, NotASymlink, TargetExists, TargetMissing, Exists
def _dotfile(repo, name, target=None):