Skip to content
This repository has been archived by the owner on Jul 29, 2022. It is now read-only.

Commit

Permalink
Merge branch 'release/1.3.1'
Browse files Browse the repository at this point in the history
* release/1.3.1:
  bump version
  fixes issue when callable is used to manage permission in detail form
  update travis
  • Loading branch information
saxix committed Aug 25, 2016
2 parents 4b4f4c2 + 6d8a7ed commit 6c9e299
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
language: python

python:
- "3.5"

sudo: false

env:
Expand Down
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Release 1.3.1
-------------
* fixes issue when callable is used to manage permission in detail form


Release 1.3
-----------
* fixes template check permissio issue
Expand Down
2 changes: 1 addition & 1 deletion src/admin_extra_urls/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os

NAME = 'admin-extra-urls'
VERSION = __version__ = (1, 3, 0, 'final', 0)
VERSION = __version__ = (1, 3, 1, 'final', 0)
__author__ = 'sax'


Expand Down
2 changes: 1 addition & 1 deletion src/admin_extra_urls/extras.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def _inner(self, request, pk):


def encapsulate(func):
def wrapper():
def wrapper(*args, **kwargs):
return func

return wrapper
Expand Down

0 comments on commit 6c9e299

Please sign in to comment.