Skip to content

Update apps.py #483

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions steam/client/builtins/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def get_product_info(self, apps=[], packages=[], meta_data_only=False, raw=False

return data

def get_changes_since(self, change_number, app_changes=True, package_changes=False):
def get_changes_since(self, change_number, app_changes=True, package_changes=False, timeout=10):
"""Get changes since a change number

:param change_number: change number to use as stating point
Expand All @@ -191,7 +191,7 @@ def get_changes_since(self, change_number, app_changes=True, package_changes=Fal
'send_app_info_changes': app_changes,
'send_package_info_changes': package_changes,
},
timeout=10
timeout=timeout
)

def get_app_ticket(self, app_id):
Expand Down