Browse Source

Wider gnuplot graphs.

Use 1.0,0.5 size for now.
Heikki Hokkanen 16 years ago
parent
commit
59eb18b413
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      gitstats

+ 1
- 1
gitstats View File

13
 import time
13
 import time
14
 import zlib
14
 import zlib
15
 
15
 
16
-GNUPLOT_COMMON = 'set terminal png transparent\nset size 0.5,0.5\n'
16
+GNUPLOT_COMMON = 'set terminal png transparent\nset size 1.0,0.5\n'
17
 MAX_EXT_LENGTH = 10 # maximum file extension length
17
 MAX_EXT_LENGTH = 10 # maximum file extension length
18
 ON_LINUX = (platform.system() == 'Linux')
18
 ON_LINUX = (platform.system() == 'Linux')
19
 
19