/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to backend/errors.py

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-06-21 20:14:00 UTC
  • mto: (0.14.1 main) (93.1.1 win32.bialix)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: Szilveszter.Farkas@gmail.com-20060621201400-ef7ddfe95b6687a0
2006-06-20  Szilveszter Farkas <Szilveszter.Farkas@gmail.com>

    * backend/init.py: moved pull() to backend/update.py
    * backend/update.py: implemented update() and missing()
        
2006-06-19  Szilveszter Farkas <Szilveszter.Farkas@gmail.com>
        
    * backend/errors.py: renamed NoPushLocationKnown to NoLocationKnown
    * backend/init.py: implemented pull()

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
        fileops.remove()
91
91
    """
92
92
 
 
93
class NoLocationKnown(OliveError):
 
94
    """ No location known or specified
 
95
    
 
96
    May occur in:
 
97
        commit.push()
 
98
        init.pull()
 
99
    """
 
100
 
93
101
class NoMatchingFiles(OliveError):
94
102
    """ No files found which could match the criteria
95
103
    
127
135
        init.branch()
128
136
    """
129
137
 
130
 
class NoPushLocationKnown(OliveError):
131
 
    """ No push location known or specified
132
 
    
133
 
    May occur in:
134
 
        commit.push()
135
 
    """
136
 
 
137
138
class NotBranchError(OliveError):
138
139
    """ Specified directory is not a branch
139
140