summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lepus.uberspace.de>2016-11-04 14:53:09 -0400
committerhut <hut@lepus.uberspace.de>2016-11-04 14:53:09 -0400
commita1e08c790c3a210d7f54e07b995251831e5f318f (patch)
treeec8bd25db1353496477a306be902f5911981ae77 /ranger
parent4d51544a0b5d9172db207944f19ac83150173713 (diff)
parent28c03b794fdfcc5f0129910d834188324a18d1fe (diff)
downloadranger-a1e08c790c3a210d7f54e07b995251831e5f318f.tar.gz
Merge branch 'statusbar_percentage_crashes' of https://github.com/richboss/ranger
Diffstat (limited to 'ranger')
-rw-r--r--ranger/gui/widgets/statusbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/widgets/statusbar.py b/ranger/gui/widgets/statusbar.py
index 0828c372..0ac62d86 100644
--- a/ranger/gui/widgets/statusbar.py
+++ b/ranger/gui/widgets/statusbar.py
@@ -290,7 +290,7 @@ class StatusBar(Widget):
             elif pos >= max_pos:
                 right.add('Bot', base, 'bot')
             else:
-                right.add('{:0.0%}'.format(float(pos) / max_pos),
+                right.add('{0:0.0%}'.format(float(pos) / max_pos),
                         base, 'percentage')
         else:
             right.add('0/0  All', base, 'all')
ed.settings.html?h=v1.5.3&id=cc813408772738fc124130095ba4a5c33c84dea3'>^
f07bb12f ^

62cd83ba ^




a614f048 ^
c9383c72 ^

62cd83ba ^
f07bb12f ^





34a60763 ^
f07bb12f ^




a614f048 ^





f07bb12f ^




a614f048 ^















c9383c72 ^

a614f048 ^



c9383c72 ^

a614f048 ^





















34a60763 ^
f07bb12f ^
62cd83ba ^


f07bb12f ^








62cd83ba ^
f07bb12f ^







c9383c72 ^
f07bb12f ^
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