Skip to content

Commit

Permalink
Fix attribute error in atom. Resolves google#29
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Robben committed Sep 24, 2015
1 parent f85797c commit 7404698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/atom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def optional_warn_function(*args, **kwargs):
# Preserve the original name to avoid masking all decorated functions as
# 'deprecated_function'
try:
optional_warn_function.func_name = f.func_name
optional_warn_function.func_name = f.__name__
except TypeError:
pass # In Python2.3 we can't set the func_name
return optional_warn_function
Expand Down

1 comment on commit 7404698

@rakhi27
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how can i install updated gdata. If I install it with 'pip install gdata'. the above changes are not yet replicated. Please give me information about it.

Please sign in to comment.