My local file and mercurial revision are at different stages however hg pull & hg update default returns a no changes message.
On bitbucket my repo and revision I am trying to pull to local machine is https://bitbucket.org/sayth/pyxml/src/c63b5ce2119ae64331ee2551fc19083315be0571/xrace.py
[sayth@localhost pyXML]$ hg pull && hg update default
pulling from https://bitbucket.org/sayth/pyxml
searching for changes
no changes found
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
At bitbucket at latest revision you can see just in the imports alone they are different.
Bitbucket
# from lxml import etree
from lxml import objectify
import argparse
import os
local machine
from pyquery import PyQuery as pq
# import pandas as pd
# import psycopg2
import argparse
import os
# from datetime import datetime
Even trying pulling by revision number but it wont update.
[sayth@localhost pyXML]$ hg pull -r c63b5ce
pulling from https://bitbucket.org/sayth/pyxml
no changes found