Skip to content

Commit

Permalink
Issue 5856 - SyntaxWarning: invalid escape sequence '\,'
Browse files Browse the repository at this point in the history
Bug Description:
An error is logged during rpm build:

/usr/lib/python3.12/site-packages/lib389/cli_conf/replication.py:1682: SyntaxWarning: invalid escape sequence '\,'

Fix Description:
Fix the typo.

Fixes: #5856

Reviewed-by: @droideck (Thanks!)
  • Loading branch information
vashirov committed Jul 25, 2023
1 parent ce9f523 commit 87ae63a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib389/lib389/cli_conf/replication.py
Original file line number Diff line number Diff line change
Expand Up @@ -1679,7 +1679,7 @@ def create_parser(subparsers):
winsync_agmt_add_parser.add_argument('--sync-interval', help="Sets the interval that DS checks AD for changes in entries")
winsync_agmt_add_parser.add_argument('--one-way-sync',
help="Sets which direction to perform synchronization: \"toWindows\", or "
"\"fromWindows\,. By default sync occurs in both directions.")
"\"fromWindows\". By default sync occurs in both directions.")
winsync_agmt_add_parser.add_argument('--move-action',
help="Sets instructions on how to handle moved or deleted entries: "
"\"none\", \"unsync\", or \"delete\"")
Expand Down

0 comments on commit 87ae63a

Please sign in to comment.