Skip to content

Commit

Permalink
remove bad pydev related configuration comments
Browse files Browse the repository at this point in the history
  • Loading branch information
toutpt committed May 15, 2012
1 parent 3629afe commit c7a780a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion collective/linguasitemap/browser/sitemap.py
Expand Up @@ -6,7 +6,7 @@

from ZPublisher.BaseRequest import DefaultPublishTraverse

import logging # @UnresolvedImport
import logging
logger = logging.getLogger('test')


Expand Down
6 changes: 3 additions & 3 deletions collective/linguasitemap/testing.py
@@ -1,6 +1,6 @@
from plone.app.testing import PloneWithPackageLayer # @UnresolvedImport
from plone.app.testing import IntegrationTesting # @UnresolvedImport
from plone.app.testing import FunctionalTesting # @UnresolvedImport
from plone.app.testing import PloneWithPackageLayer
from plone.app.testing import IntegrationTesting
from plone.app.testing import FunctionalTesting
import collective.linguasitemap

FIXTURE = PloneWithPackageLayer(zcml_filename="configure.zcml",
Expand Down
2 changes: 1 addition & 1 deletion collective/linguasitemap/tests/base.py
@@ -1,6 +1,6 @@
import unittest2 as unittest
from collective.linguasitemap import testing
from plone.app import testing as ptesting # @UnresolvedImport
from plone.app import testing as ptesting
from plone.browserlayer.layer import mark_layer


Expand Down
2 changes: 1 addition & 1 deletion collective/linguasitemap/tests/test_sitemap.py
Expand Up @@ -2,7 +2,7 @@

from zope import component
from collective.linguasitemap.tests import base, utils
from plone.testing.z2 import Browser # @UnresolvedImport
from plone.testing.z2 import Browser


class UnitTestSiteMapView(unittest.TestCase):
Expand Down
5 changes: 1 addition & 4 deletions setup.py
@@ -1,5 +1,4 @@
from setuptools import setup, find_packages
import os

version = '1.0a2.dev0'

Expand Down Expand Up @@ -31,9 +30,7 @@
'Products.LinguaPlone',
# -*- Extra requirements: -*-
],
extras_require = dict(
tests=['plone.app.testing'],
),
extras_require=dict(tests=['plone.app.testing']),
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
Expand Down

0 comments on commit c7a780a

Please sign in to comment.