summary refs log tree commit diff stats
diff options
context:
space:
mode:
authormeruru <meruru@teknik.io>2018-10-25 00:46:20 -0300
committermeruru <meruru@teknik.io>2018-10-25 00:46:20 -0300
commit6002eedbb0bb497d7ca08278bf7b1c618314ae1b (patch)
treeb53b130a679d3e4ddbedb3315d804ddeccbafa17
parent16949531f739ccf0cbf8ae543e7282de4291e165 (diff)
downloadranger-6002eedbb0bb497d7ca08278bf7b1c618314ae1b.tar.gz
Delete unused variable
-rwxr-xr-xranger/ext/rifle.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py
index ee156d9a..377f9b8a 100755
--- a/ranger/ext/rifle.py
+++ b/ranger/ext/rifle.py
@@ -162,9 +162,7 @@ class Rifle(object):  # pylint: disable=too-many-instance-attributes
             config_file = self.config_file
         fobj = open(config_file, 'r')
         self.rules = []
-        lineno = 0
         for line in fobj:
-            lineno += 1
             line = line.strip()
             if line.startswith('#') or line == '':
                 continue
>9a31c34f ^
5f128523 ^


9a31c34f ^


5f128523 ^
9a31c34f ^



5f128523 ^


9a31c34f ^

5f128523 ^


9a31c34f ^
5f128523 ^


9a31c34f ^


5f128523 ^


9a31c34f ^
5f128523 ^


9a31c34f ^

5f128523 ^


9a31c34f ^
a6defa54 ^
9a31c34f ^
5f128523 ^


9a31c34f ^






5f128523 ^
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