Skip to content

Commit

Permalink
Merge pull request #226 from scholarly-python-package/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
programize-admin committed Dec 11, 2020
2 parents 915f173 + c6dd172 commit 36e08f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion scholarly/_scholarly.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import requests
import random
import os
import copy
import pprint
from typing import Callable
from ._navigator import Navigator
Expand Down Expand Up @@ -291,7 +292,7 @@ def pprint(self, object: Author or Publication)->None:
print("Not a scholarly container object")
return

to_print = object
to_print = copy.deepcopy(object)
if to_print['container_type'] == 'Publication':
to_print['source'] = PublicationSource(to_print['source']).name
elif to_print['container_type'] == 'Author':
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='scholarly',
version='1.0',
version='1.0.1',
author='Steven A. Cholewiak, Panos Ipeirotis, Victor Silva',
author_email='steven@cholewiak.com, panos@stern.nyu.edu, vsilva@ualberta.ca',
description='Simple access to Google Scholar authors and citations',
Expand Down

0 comments on commit 36e08f5

Please sign in to comment.