1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-24 11:12:14 +01:00

Include filelimit=0 when querying full serverside diff

Without this change, "osc rdiff -p" simply returns "(XXX lines skipped)"
This commit is contained in:
B S Srinidhi 2013-11-11 01:39:32 +05:30
parent 82a5350a11
commit bd3a6d2fc8

View File

@ -4201,6 +4201,7 @@ def server_diff(apiurl,
query['meta'] = 1
if full:
query['filelimit'] = 0
query['tarlimit'] = 0
u = makeurl(apiurl, ['source', new_project, new_package], query=query)