Skip to content

Commit 0efccd4

Browse files
committed
Turns out '/' and '%' have the same precedence.
1 parent ffcf4c0 commit 0efccd4

File tree

1 file changed

+3
-3
lines changed
  • tests/plugins1/_batch_test/test

1 file changed

+3
-3
lines changed

tests/plugins1/_batch_test/test/qlib.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313
uid = os.getuid()
1414
tmp = tempfile.gettempdir()
15-
lock_file = Path(tmp) / 'qlist-%s.lock' % uid
16-
state_file = Path(tmp) / 'qlist-%s' % uid
17-
log_file = Path(tmp) / 'qlist-%s.log' % uid
15+
lock_file = Path(tmp) / ('qlist-%s.lock' % uid)
16+
state_file = Path(tmp) / ('qlist-%s' % uid)
17+
log_file = Path(tmp) / ('qlist-%s.log' % uid)
1818
my_dir = Path(__file__).parent
1919

2020

0 commit comments

Comments
 (0)