We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96042a3 commit e0d045cCopy full SHA for e0d045c
osc/core.py
@@ -2405,7 +2405,8 @@ def prj_pkg_join(prj, pkg):
2405
if action.src_package:
2406
d['source'] = '%s ->' % prj_pkg_join(action.src_project, action.src_package)
2407
d['target'] = action.tgt_project
2408
- d['target'] += " (release in " + action.tgt_releaseproject + ")"
+ if action.tgt_releaseproject:
2409
+ d['target'] += " (release in " + action.tgt_releaseproject + ")"
2410
srcupdate = ' '
2411
if action.opt_sourceupdate and show_srcupdate:
2412
srcupdate = '(%s)' % action.opt_sourceupdate
0 commit comments