diff options
author | Magnus Hagander | 2019-06-19 20:32:10 +0000 |
---|---|---|
committer | Magnus Hagander | 2019-06-19 20:32:10 +0000 |
commit | 26c509da2cb1b357823d07d7a6b6ec2abc30f2d9 (patch) | |
tree | bc2415315642d842fb74dcad3f36ccf918a255e0 /loader/lib/varnish.py | |
parent | 2b138363a46c90de0069edaddf114c0bd1dc3d33 (diff) |
Fix typo
Diffstat (limited to 'loader/lib/varnish.py')
-rw-r--r-- | loader/lib/varnish.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/lib/varnish.py b/loader/lib/varnish.py index 4d346dd..df74f37 100644 --- a/loader/lib/varnish.py +++ b/loader/lib/varnish.py @@ -22,7 +22,7 @@ class VarnishPurger(object): exprlist.append('pgam_%s/%s/%s' % p) else: # Purging individual thread - exprlist.append('pgat_%:' % p) + exprlist.append('pgat_%s:' % p) purgedict = dict(list(zip(['x%s' % n for n in range(0, len(exprlist))], exprlist))) purgedict['n'] = len(exprlist) r = requests.post(purgeurl, data=purgedict, headers={ |