~ubuntu-branches/ubuntu/utopic/mugshot/utopic

« back to all changes in this revision

Viewing changes to mugshot_lib/Builder.py

  • Committer: Package Import Robot
  • Author(s): Sean Davis
  • Date: 2014-09-01 20:23:33 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140901202333-izr5f0h9y8o1u170
Tags: 0.2.5-0ubuntu1
* New upstream release.
  - Fix: mugshot fails to start for some users (LP: #1353530)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#
6
6
#   This program is free software: you can redistribute it and/or modify it
7
7
#   under the terms of the GNU General Public License as published by
8
 
#   the Free Software Foundation, either version 3 of the License, or 
 
8
#   the Free Software Foundation, either version 3 of the License, or
9
9
#   (at your option) any later version.
10
10
#
11
11
#   This program is distributed in the hope that it will be useful, but
234
234
    aliased_methods = [x[1] for x in methods if hasattr(x[1], 'aliases')]
235
235
 
236
236
    # a method may have several aliases
237
 
    #~ @alias('on_btn_foo_clicked')
238
 
    #~ @alias('on_tool_foo_activate')
239
 
    #~ on_menu_foo_activate():
240
 
        #~ pass
 
237
    # ~ @alias('on_btn_foo_clicked')
 
238
    # ~ @alias('on_tool_foo_activate')
 
239
    # ~ on_menu_foo_activate():
 
240
    # ~     pass
241
241
    alias_groups = [(x.aliases, x) for x in aliased_methods]
242
242
 
243
243
    aliases = []