forked from openlp/openlp
pep8 fixes
This commit is contained in:
parent
d7e4798b96
commit
b6a36f2324
@ -29,7 +29,7 @@ import copy
|
|||||||
|
|
||||||
from PyQt5 import QtCore, QtWebChannel, QtWidgets
|
from PyQt5 import QtCore, QtWebChannel, QtWidgets
|
||||||
|
|
||||||
from openlp.core.common.path import Path, path_to_str
|
from openlp.core.common.path import path_to_str
|
||||||
from openlp.core.common.settings import Settings
|
from openlp.core.common.settings import Settings
|
||||||
from openlp.core.common.registry import Registry
|
from openlp.core.common.registry import Registry
|
||||||
from openlp.core.common.applocation import AppLocation
|
from openlp.core.common.applocation import AppLocation
|
||||||
|
@ -44,7 +44,7 @@ class TestBzrTags(TestCase):
|
|||||||
# WHEN getting the branches tags
|
# WHEN getting the branches tags
|
||||||
try:
|
try:
|
||||||
bzr = Popen(('bzr', 'tags', '--directory=' + path), stdout=PIPE)
|
bzr = Popen(('bzr', 'tags', '--directory=' + path), stdout=PIPE)
|
||||||
except:
|
except Exception:
|
||||||
raise SkipTest('bzr is not installed')
|
raise SkipTest('bzr is not installed')
|
||||||
std_out = bzr.communicate()[0]
|
std_out = bzr.communicate()[0]
|
||||||
count = len(TAGS1)
|
count = len(TAGS1)
|
||||||
|
Loading…
Reference in New Issue
Block a user