aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_pull.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/bridge_pull.go')
-rw-r--r--commands/bridge_pull.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/commands/bridge_pull.go b/commands/bridge_pull.go
index 0f3b8413..2bdd24c3 100644
--- a/commands/bridge_pull.go
+++ b/commands/bridge_pull.go
@@ -73,7 +73,9 @@ func runBridgePull(cmd *cobra.Command, args []string) error {
importedIssues := 0
importedIdentities := 0
for result := range events {
- fmt.Println(result.String())
+ if result.Event != core.ImportEventNothing {
+ fmt.Println(result.String())
+ }
switch result.Event {
case core.ImportEventBug: