summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Schult <dschult@colgate.edu>2016-04-17 22:06:04 -0400
committerDan Schult <dschult@colgate.edu>2016-04-17 22:06:04 -0400
commit17af3ed0243dc5fc03ae9590fefdc3e51ccd8027 (patch)
tree98805c732f9ed9b8c56c5eac2e2117eb9ecc8cb5
parentdbf738d8c93e3284ec4d43cb7ffab7d4e2aa98d6 (diff)
parentf3a9b4b57e6e49094058db49f47fd17199db7355 (diff)
downloadnetworkx-17af3ed0243dc5fc03ae9590fefdc3e51ccd8027.tar.gz
Merge pull request #2090 from hagberg/generator-name
Generator rename
-rw-r--r--networkx/algorithms/community/__init__.py2
-rw-r--r--networkx/algorithms/community/community_generators.py (renamed from networkx/algorithms/community/generators.py)0
2 files changed, 1 insertions, 1 deletions
diff --git a/networkx/algorithms/community/__init__.py b/networkx/algorithms/community/__init__.py
index aa9a9b1a..1d0fbbdf 100644
--- a/networkx/algorithms/community/__init__.py
+++ b/networkx/algorithms/community/__init__.py
@@ -1,6 +1,6 @@
from networkx.algorithms.community.asyn_lpa import *
from networkx.algorithms.community.centrality import *
-from networkx.algorithms.community.generators import *
+from networkx.algorithms.community.community_generators import *
from networkx.algorithms.community.kclique import *
from networkx.algorithms.community.kernighan_lin import *
from networkx.algorithms.community.quality import *
diff --git a/networkx/algorithms/community/generators.py b/networkx/algorithms/community/community_generators.py
index b0c4e91e..b0c4e91e 100644
--- a/networkx/algorithms/community/generators.py
+++ b/networkx/algorithms/community/community_generators.py