Skip to content

Commit 3443024

Browse files
committed
f strings ending in = not supported in py3.6
1 parent 6c743ee commit 3443024

File tree

1 file changed

+1
-1
lines changed
  • sarracenia/flowcb/gather

1 file changed

+1
-1
lines changed

sarracenia/flowcb/gather/am.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def __WaitForRemoteConnections__(self) -> NoReturn:
189189

190190
os.execl(sys.executable , sys.executable , *sys.argv )
191191

192-
logger.critical(f"Failed to launch child! {sys.argv=}. Exiting")
192+
logger.critical(f"Failed to launch child! sys.argv={sys.argv}. Exiting")
193193
sys.exit(1)
194194

195195
elif pid == -1:

0 commit comments

Comments
 (0)