##// END OF EJS Templates
lfs: fix interpolation of int and %s in an exception case...
lfs: fix interpolation of int and %s in an exception case Seen in the wild in a server log when MS antivirus was quarantining a file on the client side.

File last commit:

r46652:8dca9051 default
r50421:192949b6 stable
Show More
base85.pyi
6 lines | 145 B | text/x-python | PythonLexer
from typing import Optional
version: int
def b85encode(text: bytes, pad: Optional[int]) -> bytes: ...
def b85decode(text: bytes) -> bytes: ...