Changeset 81ca822 in trunk
- Timestamp:
- 2019-03-14T15:24:35Z (6 years ago)
- Branches:
- master
- Children:
- db7af266
- Parents:
- 3ab71385
- git-author:
- Jean-Paul Calderone <exarkun@…> (2019-03-06 20:13:59)
- git-committer:
- Jean-Paul Calderone <exarkun@…> (2019-03-14 15:24:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/allmydata/frontends/magic_folder.py ¶
r3ab71385 r81ca822 523 523 ) 524 524 525 PENDING = Field .for_types(525 PENDING = Field( 526 526 u"pending", 527 [list],527 lambda s: list(s), 528 528 u"The paths which are pending processing.", 529 eliotutil.validateInstanceOf(set), 529 530 ) 530 531 … … 1338 1339 1339 1340 try: 1340 with REMOVE_FROM_PENDING(relpath=relpath_u, pending= list(self._pending)):1341 with REMOVE_FROM_PENDING(relpath=relpath_u, pending=self._pending): 1341 1342 self._pending.remove(relpath_u) 1342 1343 except KeyError:
Note: See TracChangeset
for help on using the changeset viewer.