Commit 42d762f7049a7a9d817c78ed9188f9903234c08d

Authored by Antoine Goutenoir
1 parent ddea21d5
Exists in master

Fix the visits counter.

On the production server, the relative paths are different.
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
flaskr/core.py
... ... @@ -7,7 +7,7 @@ from uuid import uuid4
7 7 from .content import content
8 8  
9 9  
10   -hit_count_path = "../VISITS"
  10 +hit_count_path = "VISITS"
11 11  
12 12  
13 13 def generate_unique_id():
... ...