Skip to content

Commit

Permalink
git subrepo pull uno
Browse files Browse the repository at this point in the history
subrepo:
  subdir:   "uno"
  merged:   "cc757633"
upstream:
  origin:   "https://github.com/prrvchr/uno.git"
  branch:   "master"
  commit:   "cc757633"
git-subrepo:
  version:  "0.4.3"
  origin:   "https://github.com/ingydotnet/git-subrepo.git"
  commit:   "2f68596"
  • Loading branch information
prrvchr committed Nov 17, 2024
1 parent 569deb0 commit 9bf89b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions uno/.gitrepo
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[subrepo]
remote = https://github.com/prrvchr/uno.git
branch = master
commit = 9b32ecc1734832565ed39ee88978cbd90d75b7a0
commit = cc757633452c98b2639eb75d5ce8ac4857620807
method = merge
cmdver = 0.4.3
parent = 9495d9a8f74e8e218417dff79c862c3cfaadc67e
parent = 569deb02b5a5214571427d4fea1e142f4f874d6e
2 changes: 1 addition & 1 deletion uno/lib/uno/ucb/replicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def _pullUser(self, user):
return False
self._logger.logprb(INFO, g_class, mtd, 201, user.Name)
self._checkNewIdentifier(user)
pages, count, download, token = self._provider.pullUser(user)
count, download, pages, token = self._provider.pullUser(user)
self._logger.logprb(INFO, g_class, mtd, 202, user.Name, count, download, pages, token)
if token:
user.Token = token
Expand Down
2 changes: 1 addition & 1 deletion uno/lib/uno/ucb/ucp/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def pullUser(self, user):
for item in self.parseItems(user.Request, parameter, user.RootId):
count += user.DataBase.mergeItem(user.Id, user.RootId, datetime, item)
download += self.pullFileContent(user, item)
return parameter.PageCount, count, download, parameter.SyncToken
return count, download, parameter.PageCount, parameter.SyncToken

# Method called by Content
def updateFolderContent(self, user, data):
Expand Down

0 comments on commit 9bf89b9

Please sign in to comment.