This commit is contained in:
Kevin Ngo 2013-06-20 11:53:47 -07:00
Родитель 85f05e5da8
Коммит c359ce83ca
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -385,7 +385,7 @@ def shuffle(sequence):
def license_link(license):
"""Link to a code license, including icon where applicable."""
# If passed in an integer, try to look up the License.
if isinstance(license, int) or isinstance(license, long):
if isinstance(license, (long, int)):
license = License.objects.filter(id=license)
if not license.exists():
return ''