~dreampie-devel/dreampie/trunk

« back to all changes in this revision

Viewing changes to dreampielib/gui/autocomplete.py

  • Committer: Noam Yorav-Raphael
  • Date: 2012-01-22 16:18:49 UTC
  • Revision ID: noamraph@gmail.com-20120122161849-4ygrm461ft1f03jy
Another indentation bug

Show diffs side-by-side

added added

removed removed

Lines of Context:
147
147
        if is_auto and '(' in comp_what:
148
148
            # Don't evaluate expressions which may contain a function call.
149
149
            return
150
 
            key_reprs = self.complete_dict_keys(comp_what)
 
150
        key_reprs = self.complete_dict_keys(comp_what)
151
151
        if key_reprs is None:
152
152
            return
153
153
        if text[index:index+1] != ']':