Site
Gitweb
Static
projects
/
bb-sync-api.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc84809
)
Bug fix
author
Jakob
<jakob@jcornell.net>
Sat, 23 Nov 2019 07:25:42 +0000
(
01:25
-0600)
committer
Jakob
<jakob@jcornell.net>
Sat, 23 Nov 2019 07:25:42 +0000
(
01:25
-0600)
fs.py
patch
|
blob
|
history
diff --git
a/fs.py
b/fs.py
index 1c23b35ed2fe388e0883ea2bca8b09aa9dc86939..0a22c4f59c502ba0e3f1a984e8eef9e1de6aadcf 100644
(file)
--- a/
fs.py
+++ b/
fs.py
@@
-74,7
+74,7
@@
BB_META_STREAM_NAME = '8f3b98ea-e227-478f-bb58-5c31db476409'
VersionInfo = namedtuple('ParseResult', ['bb_id', 'version'])
-VersionInfo.next = lambda self
, v
: VersionInfo(self.bb_id, self.version + 1)
+VersionInfo.next = lambda self: VersionInfo(self.bb_id, self.version + 1)
def _extract_version(path):