summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAric Hagberg <aric.hagberg@gmail.com>2014-06-02 20:22:42 -0600
committerAric Hagberg <aric.hagberg@gmail.com>2014-06-02 20:22:42 -0600
commit60b2ef7146a65306dbc41a4942fd61bd845dca10 (patch)
treec8a46f5cdde3df2b77eb798a0fa2ad3a12ff4e3f
parent091d148580a9461e8ed10d2e50146451edb49c0a (diff)
downloadnetworkx-60b2ef7146a65306dbc41a4942fd61bd845dca10.tar.gz
Adjust author email, copyright year
-rw-r--r--networkx/readwrite/pajek.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/networkx/readwrite/pajek.py b/networkx/readwrite/pajek.py
index 71aeb81b..e23bf7c7 100644
--- a/networkx/readwrite/pajek.py
+++ b/networkx/readwrite/pajek.py
@@ -12,7 +12,7 @@ Format
See http://vlado.fmf.uni-lj.si/pub/networks/pajek/doc/draweps.htm
for format information.
"""
-# Copyright (C) 2008-2011 by
+# Copyright (C) 2008-2014 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
@@ -20,7 +20,7 @@ for format information.
# BSD license.
import networkx as nx
from networkx.utils import is_string_like, open_file, make_str
-__author__ = """Aric Hagberg (hagberg@lanl.gov)"""
+__author__ = """Aric Hagberg <aric.hagberg@gmail.com>"""
__all__ = ['read_pajek', 'parse_pajek', 'generate_pajek', 'write_pajek']
def generate_pajek(G):