Skip to content

Commit

Permalink
Remove unwanted print() statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-E-Rose committed Aug 20, 2017
1 parent 21b8668 commit 510576d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change Log
----------

0.4.1
~~~~~

2017-08-20

* Remove unwanted print() statement.

0.4
~~~

Expand Down
1 change: 0 additions & 1 deletion scopus/scopus_author.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ def __init__(self, author_id, refresh=False, refresh_aff=False, level=1):
aff_ids = [el.attrib.get('affiliation-id') for el in
xml.findall('author-profile/affiliation-history/affiliation')
if el is not None and len(list(el.find("ip-doc").iter())) > 1]
print(aff_ids)
affs = [ScopusAffiliation(aff_id, refresh=refresh_aff) for aff_id in aff_ids]
self._affiliation_history = affs

Expand Down

0 comments on commit 510576d

Please sign in to comment.