~hopem/charm-helpers/lp1572506

« back to all changes in this revision

Viewing changes to charmhelpers/contrib/amulet/utils.py

  • Committer: ryan.beisner at canonical
  • Date: 2016-04-07 18:21:28 UTC
  • mfrom: (562.1.1 charm-helpers)
  • Revision ID: ryan.beisner@canonical.com-20160407182128-3gclauyev5feci31
[chris.macnaughton, r=1chb1n]  Trivial lint fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
617
617
                if isinstance(e_pids, list) and \
618
618
                        a_pids_length not in e_pids:
619
619
                    return fail_msg
620
 
                # If expected is not bool and not list, ensure PID quantities match
 
620
                # If expected is not bool and not list,
 
621
                # ensure PID quantities match
621
622
                elif not isinstance(e_pids, bool) and \
622
623
                        not isinstance(e_pids, list) and \
623
624
                        a_pids_length != e_pids: