Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
proteus-script-frame
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
This instance will be upgraded to Heptapod 17.7.0rc1 on 2025-01-23 between 18:00 and 19:00 UTC+2
Show more breadcrumbs
Tryton Community
documentation
proteus-script-frame
Commits
32ced8b6
Commit
32ced8b6
authored
7 months ago
by
Michael
Browse files
Options
Downloads
Patches
Plain Diff
Changed string template in logging calls
parent
2810a191
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
proteus-script-frame.py
+3
-3
3 additions, 3 deletions
proteus-script-frame.py
with
3 additions
and
3 deletions
proteus-script-frame.py
+
3
−
3
View file @
32ced8b6
...
...
@@ -58,9 +58,9 @@ def parse_arguments(logger):
raise
SystemExit
(
"
script stopped
"
)
if
args
.
verbose
>
1
:
logger
.
debug
(
"
database:
{}
"
.
format
(
args
.
database
)
)
logger
.
debug
(
"
dry-run:
{}
"
.
format
(
args
.
dry_run
)
)
logger
.
debug
(
"
config file:
{}
"
.
format
(
config_file
)
)
logger
.
debug
(
"
database:
%s
"
,
args
.
database
)
logger
.
debug
(
"
dry-run:
%s
"
,
args
.
dry_run
)
logger
.
debug
(
"
config file:
%s
"
,
config_file
)
# Add here your own options and parameters
return
(
args
,
config_file
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment