Skip to content

Commit

Permalink
Fixing the build
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Arcangeli committed Jan 3, 2014
1 parent ac580fd commit d2d7136
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyramid_duh/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

try:
from ._version import * # pylint: disable=F0401,W0401
except ImportError:
except ImportError: # pragma: no cover
__version__ = 'unknown'


Expand Down
5 changes: 4 additions & 1 deletion pyramid_duh/tests/test_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@
import time

import json
import unittest
from pyramid.httpexceptions import HTTPBadRequest
from mock import MagicMock
from pyramid.testing import DummyRequest
from pyramid_duh.compat import is_bytes, is_string, string_type
from pyramid_duh.params import argify, _param, includeme
try:
import unittest2 as unittest # pylint: disable=F0401
except ImportError:
import unittest


class ParamContainer(object):
Expand Down

0 comments on commit d2d7136

Please sign in to comment.