~ubuntu-branches/ubuntu/vivid/git-cola/vivid

« back to all changes in this revision

Viewing changes to cola/widgets/main.py

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2014-03-22 15:10:46 UTC
  • mfrom: (1.3.23)
  • Revision ID: package-import@ubuntu.com-20140322151046-s2lfr17hej2brlbu
Tags: 2.0.1-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
"""This view provides the main git-cola user interface.
2
2
"""
 
3
from __future__ import division, absolute_import, unicode_literals
 
4
 
3
5
import os
4
6
 
5
7
from PyQt4 import QtCore
55
57
from cola.widgets.search import search
56
58
from cola.widgets.standard import MainWindow
57
59
from cola.widgets.stash import stash
 
60
from cola.compat import unichr
58
61
 
59
62
 
60
63
class MainView(MainWindow):