Merge lp:~thisfred/desktopcouch/fix-696972 into lp:desktopcouch

Proposed by Eric Casteleijn
Status: Merged
Approved by: Eric Casteleijn
Approved revision: 244
Merged at revision: 245
Proposed branch: lp:~thisfred/desktopcouch/fix-696972
Merge into: lp:desktopcouch
Diff against target: 21 lines (+2/-2)
1 file modified
bin/desktopcouch-get-port (+2/-2)
To merge this branch: bzr merge lp:~thisfred/desktopcouch/fix-696972
Reviewer Review Type Date Requested Status
dobey (community) Approve
Nicola Larosa (community) Approve
Review via email: mp+45073@code.launchpad.net

Commit message

Fixes a bug in the imports in one of the binary scripts.

Description of the change

Fixes a bug in the imports in one of the binary scripts.

To post a comment you must log in.
Revision history for this message
Nicola Larosa (teknico) wrote :

Good change.

review: Approve
Revision history for this message
dobey (dobey) :
review: Approve
Revision history for this message
Ubuntu One Auto Pilot (otto-pilot) wrote :
Download full text (25.4 KiB)

The attempt to merge lp:~thisfred/desktopcouch/fix-696972 into lp:desktopcouch failed. Below is the output from the failed tests.

Apache CouchDB has started, time to relax.
Browse your desktop CouchDB at file:///tmp/tmpijkL1G/data/couchdb.html
desktopcouch.application.tests.test_start_local_couchdb
  TestUpdateDesignDocuments
    test_create_databases_and_design_docs ... [OK]
desktopcouch.application.tests.test_service
  TestService
    test_start_desktopcouch_replication ... [OK]
    test_start_new_desktopcouch_extensions ... [OK]
    test_start_new_desktopcouch_no_extensions ... [OK]
desktopcouch.application.tests.test_local_files
  TestKeyringIntegration
    test_with_auth ... [OK]
    test_with_no_auth ... [OK]
  TestLocalFiles
    test_all_files_returned ... [OK]
    test_bind_address ... [OK]
    test_couch_chain_ini_files ... [OK]
    test_xdg_overwrite_works ... [OK]
desktopcouch.application.tests.test_replication
  TestReplication
    test_creation ... Apache CouchDB has started, time to relax.
Browse your desktop CouchDB at file:///tmp/tmpxDYrV8/data/couchdb.html
                                                     [OK]
  TestUbuntuoneReplication
    test_exclusion ... Apache CouchDB has started, time to relax.
Browse your desktop CouchDB at file:///tmp/tmpubXvg4/data/couchdb.html
                                                    [OK]
desktopcouch.application.migration.tests.test_migration
  TestMigration
    test_migration_deleted_flag_to_trash ... test_migration_deleted_flag_to_trash
apple
                              [OK]
    test_migration_script_is_run ... test_migration_script_is_run
                                      [OK]
    test_migration_script_is_run_and_can_access_view ... test_migration_script_is_run_and_can_access_view
                  [OK]
  TestRegistration
    test_register_migration_is_added_to_the_registry ... [OK]
desktopcouch.application.platform.linux.tests.test_keyring
  TestGnomeKeyring
    test_get_aouth_no_keyring ... [OK]
    test_get_oauth_canceled_store ... [OK]
    test_get_oauth_data_stored ... [OK]
    test_get_user_name_password_keyring ... [OK]
    test_get_user_name_password_no_daemon ... [OK]
    test_get_user_name_password_not_in_keyring ... [OK]
    test_get_user_name_password_user_cancel ... [OK]
desktopcouch.application.platform.windows.tests.test_keyring
  TestKeyring
    test_get_oauth_data ... [OK]
    test_get_user_name_password ... [OK]
    test_get_user_name_password_no_ke...

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'bin/desktopcouch-get-port'
2--- bin/desktopcouch-get-port 2010-11-26 19:10:44 +0000
3+++ bin/desktopcouch-get-port 2011-01-03 21:14:09 +0000
4@@ -26,7 +26,7 @@
5
6 # pylint: disable=C0103
7
8-import desktopcouch
9+from desktopcouch.application import platform
10 import sys
11 import os
12
13@@ -35,7 +35,7 @@
14 try:
15 # Don't let any of our output interfere
16 sys.stdout = DEVNULL
17- PORT = desktopcouch.application.platform.find_port()
18+ PORT = platform.find_port()
19 finally:
20 sys.stdout = SAVED_STDOUT
21 DEVNULL.close()

Subscribers

People subscribed via source and target branches