summary refs log tree commit diff stats
path: root/ranger/config/commands.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2013-02-16 00:22:42 +0100
committerhut <hut@lavabit.com>2013-02-16 00:22:42 +0100
commit0f4ae7b5ca1edc30b44f7a2ccbbfe3e2d4139908 (patch)
treedfddcd69b3ace1a90af00024dce6f7fb784fef22 /ranger/config/commands.py
parent573d3bf98923543818ecbc8b781dc85b373eacda (diff)
downloadranger-0f4ae7b5ca1edc30b44f7a2ccbbfe3e2d4139908.tar.gz
move ranger/vcs/* to ranger/ext/vcs/*
Diffstat (limited to 'ranger/config/commands.py')
-rw-r--r--ranger/config/commands.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py
index c98f36f9..94304f1c 100644
--- a/ranger/config/commands.py
+++ b/ranger/config/commands.py
@@ -1169,7 +1169,7 @@ class stage(Command):
     Stage selected files for the corresponding version control system
     """
     def execute(self):
-        from ranger.vcs import VcsError
+        from ranger.ext.vcs import VcsError
 
         filelist = [f.path for f in self.fm.thistab.get_selection()]
         self.fm.thisdir.vcs_outdated = True
@@ -1191,7 +1191,7 @@ class unstage(Command):
     Unstage selected files for the corresponding version control system
     """
     def execute(self):
-        from ranger.vcs import VcsError
+        from ranger.ext.vcs import VcsError
 
         filelist = [f.path for f in self.fm.thistab.get_selection()]
         self.fm.thisdir.vcs_outdated = True
@@ -1213,7 +1213,7 @@ class diff(Command):
     Displays a diff of selected files against last last commited version
     """
     def execute(self):
-        from ranger.vcs import VcsError
+        from ranger.ext.vcs import VcsError
         import tempfile
 
         L = self.fm.thistab.get_selection()
@@ -1241,7 +1241,7 @@ class log(Command):
     Displays the log of the current repo or files
     """
     def execute(self):
-        from ranger.vcs import VcsError
+        from ranger.ext.vcs import VcsError
         import tempfile
 
         L = self.fm.thistab.get_selection()
<boothj5@gmail.com> 2014-03-08 00:07:38 +0000 Added connection status tests for cmd_join' href='/danisanti/profani-tty/commit/tests/test_cmd_join.c?id=f3fe1d34d2608bed06bdf0302656cde5b0107183'>f3fe1d34 ^
81190251 ^
f3fe1d34 ^
f3fe1d34 ^




















2d54c565 ^
a94814f0 ^

a94814f0 ^

aa4ffa7e ^
a94814f0 ^



81190251 ^
a94814f0 ^
a94814f0 ^

baf46c6a ^






baf46c6a ^
6af10696 ^
6640a089 ^
baf46c6a ^


aa4ffa7e ^

baf46c6a ^
aa4ffa7e ^





baf46c6a ^
81190251 ^
baf46c6a ^
baf46c6a ^

dd1ee18c ^
f3fe1d34 ^
dd1ee18c ^


dd1ee18c ^
6af10696 ^
6640a089 ^
f3fe1d34 ^
dd1ee18c ^
f3fe1d34 ^
aa4ffa7e ^




f3fe1d34 ^
aa4ffa7e ^


baf46c6a ^
81190251 ^
f3fe1d34 ^
f3fe1d34 ^
bafc0f25 ^



2c15aba9 ^
bafc0f25 ^
bafc0f25 ^
6af10696 ^
6640a089 ^
bafc0f25 ^


aa4ffa7e ^

bafc0f25 ^
aa4ffa7e ^





bafc0f25 ^
81190251 ^
bafc0f25 ^
bafc0f25 ^
15fce2cf ^








22ab2686 ^
6af10696 ^
6640a089 ^
15fce2cf ^


aa4ffa7e ^




15fce2cf ^
aa4ffa7e ^


15fce2cf ^
81190251 ^
15fce2cf ^
15fce2cf ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167