You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2020/10/08 14:41:00 UTC

[allura] branch master updated: [#8380] py3 fix to make python-modernize happy

This is an automated email from the ASF dual-hosted git repository.

brondsem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git


The following commit(s) were added to refs/heads/master by this push:
     new 3b48979  [#8380] py3 fix to make python-modernize happy
3b48979 is described below

commit 3b48979b3a20e51a400d49c97dfcdbf31fe57a66
Author: Dave Brondsema <da...@brondsema.net>
AuthorDate: Thu Oct 8 10:40:50 2020 -0400

    [#8380] py3 fix to make python-modernize happy
---
 Allura/allura/lib/project_create_helpers.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Allura/allura/lib/project_create_helpers.py b/Allura/allura/lib/project_create_helpers.py
index 2796995..fb2a141 100644
--- a/Allura/allura/lib/project_create_helpers.py
+++ b/Allura/allura/lib/project_create_helpers.py
@@ -29,6 +29,7 @@ import requests
 import formencode
 import six
 from six.moves.urllib.parse import urlparse
+from six.moves import range
 
 from allura.lib.helpers import slugify
 from allura.model import Neighborhood