Stuart
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
steam/client/builtins/apps.py
|
@ -173,7 +173,7 @@ class Apps(object): |
|
|
|
|
|
|
|
|
return data |
|
|
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 |
|
|
"""Get changes since a change number |
|
|
|
|
|
|
|
|
:param change_number: change number to use as stating point |
|
|
:param change_number: change number to use as stating point |
|
@ -191,7 +191,7 @@ class Apps(object): |
|
|
'send_app_info_changes': app_changes, |
|
|
'send_app_info_changes': app_changes, |
|
|
'send_package_info_changes': package_changes, |
|
|
'send_package_info_changes': package_changes, |
|
|
}, |
|
|
}, |
|
|
timeout=10 |
|
|
timeout=timeout |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
def get_app_ticket(self, app_id): |
|
|
def get_app_ticket(self, app_id): |
|
|