mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-05-21 15:16:34 -04:00
69d1ddae0c
* Updated UI Config to respect User Agent in ENV file if exists * Updated version number
8 lines
157 B
Python
8 lines
157 B
Python
import os
|
|
|
|
optional_dev_tag = ''
|
|
if os.getenv('DEV_BUILD'):
|
|
optional_dev_tag = '.dev' + os.getenv('DEV_BUILD')
|
|
|
|
__version__ = '0.9.4' + optional_dev_tag
|