Skip to content

Commit 7f2cb67

Browse files
committed
v0.9.7
1 parent 96495a9 commit 7f2cb67

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

copyparty/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# coding: utf-8
22

3-
VERSION = (0, 9, 6)
3+
VERSION = (0, 9, 7)
44
CODENAME = "the strongest music server"
5-
BUILD_DT = (2021, 3, 7)
5+
BUILD_DT = (2021, 3, 8)
66

77
S_VERSION = ".".join(map(str, VERSION))
88
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

copyparty/httpcli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1282,18 +1282,18 @@ def tx_browser(self):
12821282
args = s3enc(idx.mem_cur, rd, fn)
12831283
r = icur.execute(q, args).fetchone()
12841284

1285+
tags = {}
1286+
f["tags"] = tags
1287+
12851288
if not r:
12861289
continue
12871290

12881291
w = r[0][:16]
1289-
tags = {}
12901292
q = "select k, v from mt where w = ? and k != 'x'"
12911293
for k, v in icur.execute(q, (w,)):
12921294
taglist[k] = True
12931295
tags[k] = v
12941296

1295-
f["tags"] = tags
1296-
12971297
if icur:
12981298
taglist = [k for k in self.args.mte.split(",") if k in taglist]
12991299
for f in dirs:

0 commit comments

Comments
 (0)