| OLD | NEW |
| 1 # Copyright (c) 2010 Spotify AB | 1 # Copyright (c) 2010 Spotify AB |
| 2 # Copyright (c) 2010 Yelp |
| 2 # | 3 # |
| 3 # Permission is hereby granted, free of charge, to any person obtaining a | 4 # Permission is hereby granted, free of charge, to any person obtaining a |
| 4 # copy of this software and associated documentation files (the | 5 # copy of this software and associated documentation files (the |
| 5 # "Software"), to deal in the Software without restriction, including | 6 # "Software"), to deal in the Software without restriction, including |
| 6 # without limitation the rights to use, copy, modify, merge, publish, dis- | 7 # without limitation the rights to use, copy, modify, merge, publish, dis- |
| 7 # tribute, sublicense, and/or sell copies of the Software, and to permit | 8 # tribute, sublicense, and/or sell copies of the Software, and to permit |
| 8 # persons to whom the Software is furnished to do so, subject to the fol- | 9 # persons to whom the Software is furnished to do so, subject to the fol- |
| 9 # lowing conditions: | 10 # lowing conditions: |
| 10 # | 11 # |
| 11 # The above copyright notice and this permission notice shall be included | 12 # The above copyright notice and this permission notice shall be included |
| (...skipping 22 matching lines...) Expand all Loading... |
| 34 | 35 |
| 35 if self.bootstrap_action_args: | 36 if self.bootstrap_action_args: |
| 36 args.extend(self.bootstrap_action_args) | 37 args.extend(self.bootstrap_action_args) |
| 37 | 38 |
| 38 return args | 39 return args |
| 39 | 40 |
| 40 def __repr__(self): | 41 def __repr__(self): |
| 41 return '%s.%s(name=%r, path=%r, bootstrap_action_args=%r)' % ( | 42 return '%s.%s(name=%r, path=%r, bootstrap_action_args=%r)' % ( |
| 42 self.__class__.__module__, self.__class__.__name__, | 43 self.__class__.__module__, self.__class__.__name__, |
| 43 self.name, self.path, self.bootstrap_action_args) | 44 self.name, self.path, self.bootstrap_action_args) |
| OLD | NEW |